Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.javascript > #31502
| From | $Bill <news@todbe.com> |
|---|---|
| Newsgroups | comp.lang.javascript |
| Subject | Re: How to write object-oriented JS function? |
| Date | 2016-10-03 15:22 -0700 |
| Organization | A noiseless patient Spider |
| Message-ID | <nsulmk$ufa$1@dont-email.me> (permalink) |
| References | (5 earlier) <6194vb178d81b2mrgg8viikpgoqusvv9il@4ax.com> <9n94vbd04gmdirnh7chp9jeqo6kp5i3n75@4ax.com> <XnsA6967A44DCB22eejj99@194.109.6.166> <8i75vbd14a0cooqv29uu5uobl0tv8vvhgs@4ax.com> <XnsA696F1C4E40F3eejj99@194.109.6.166> |
On 10-03-16 14:46, Evertjan. wrote:
> John Harris <niam@jghnorth.org.uk.invalid> wrote on 03 Oct 2016 in
> comp.lang.javascript:
>
>> The == 1 is a typing error. It should have been == 20.
>
> Same problem:
>
> jag.cnt = 1;
> if (jag.cnt == 20)
>
> Seems to me NOW the if-condition is NEVER true.
Unless there's an increment of jag.cnt like below.
if (jag.cnt >= 20) { // safer to always account for an anomalous condition
// do something and reset jag.cnt
>>> ...
>>> jag.cnt++;
Back to comp.lang.javascript | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
How to write object-oriented JS function? justaguy <lichunshen84@gmail.com> - 2016-09-30 09:55 -0700
Re: How to write object-oriented JS function? John Harris <niam@jghnorth.org.uk.invalid> - 2016-10-01 15:16 +0100
Re: How to write object-oriented JS function? justaguy <lichunshen84@gmail.com> - 2016-10-01 09:23 -0700
Re: How to write object-oriented JS function? John Harris <niam@jghnorth.org.uk.invalid> - 2016-10-02 11:27 +0100
Re: How to write object-oriented JS function? justaguy <lichunshen84@gmail.com> - 2016-10-02 04:22 -0700
Re: How to write object-oriented JS function? justaguy <lichunshen84@gmail.com> - 2016-10-02 11:27 -0700
Re: How to write object-oriented JS function? John Harris <niam@jghnorth.org.uk.invalid> - 2016-10-03 10:26 +0100
Re: How to write object-oriented JS function? John Harris <niam@jghnorth.org.uk.invalid> - 2016-10-03 10:38 +0100
Re: How to write object-oriented JS function? "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-10-03 12:01 +0200
Re: How to write object-oriented JS function? John Harris <niam@jghnorth.org.uk.invalid> - 2016-10-03 19:07 +0100
Re: How to write object-oriented JS function? justaguy <lichunshen84@gmail.com> - 2016-10-03 14:33 -0700
Re: How to write object-oriented JS function? John Harris <niam@jghnorth.org.uk.invalid> - 2016-10-04 17:59 +0100
Re: How to write object-oriented JS function? justaguy <lichunshen84@gmail.com> - 2016-10-04 20:10 -0700
Re: How to write object-oriented JS function? justaguy <lichunshen84@gmail.com> - 2016-10-05 04:47 -0700
Re: How to write object-oriented JS function? "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-10-03 23:46 +0200
Re: How to write object-oriented JS function? $Bill <news@todbe.com> - 2016-10-03 15:22 -0700
Re: How to write object-oriented JS function? $Bill <news@todbe.com> - 2016-10-03 15:28 -0700
Re: How to write object-oriented JS function? "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-10-04 09:16 +0200
Re: How to write object-oriented JS function? $Bill <news@todbe.com> - 2016-10-04 00:46 -0700
Re: How to write object-oriented JS function? "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-10-04 14:56 +0200
Re: How to write object-oriented JS function? John Harris <niam@jghnorth.org.uk.invalid> - 2016-10-04 16:49 +0100
Re: How to write object-oriented JS function? "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-10-04 19:55 +0200
csiph-web