vote up 0 vote down star

More specifically, is there a set of values ( a, b and c) for which the operator precedence matters in the statement:

var value = (a && b == c);

(with the exception of NaN).

flag

3 Answers

vote up 3 vote down check

Yes

js> false && true == false
false
js> (false && true) == false
true

Since == has higher precedence than &&, the first is parsed as false && (true == false), which is equivalent to false && false, and thus evaluates to false. The second is equivalent to false == false, which is true

link|flag
Awesome, thanks :) BTW can you recommend a js console? – Ej Mar 26 at 22:03
I'm using spidermonkey mozilla.org/js/spidermonkey I don't use it for all that much, just testing the occasional expression like this. – Brian Campbell Mar 26 at 22:12
firebug addons.mozilla.org/en-US/firefox/… has a JS console – sysrqb Mar 26 at 22:17
Yes. Safari & Chrome also have JavaScript consoles courtesy of the WebKit Inspector webkit.org/blog/197/… – Brian Campbell Mar 27 at 1:52
vote up 2 vote down

Yup. == binds more tightly than &&, so what you have binds as

var val = a && ( b == c)

See here. So a==0, b==1 and c==0 is false, while (a&&b)==c is true.

(Fixed typo. Dammit.)

link|flag
a=1, b=0, c=0 in a && b == c would give 1 && (0 == 0) => 1 && true => true – Ej Mar 26 at 22:02
Dammit. Thanks. – Charlie Martin Mar 26 at 22:42
vote up 2 vote down

The language is parsed such that your statement is the equivalent of (a && (b == c)). The equality operator will always run before &&, || and other logical operators. You can find the nitty-gritty details here.

link|flag
Yeah I understand that but I was trying to figure out if it made a difference in that specific example. – Ej Mar 26 at 21:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.