Can anyone explain why the following two statements both evaluate as true?
[] == false
and
!![]
This question is purely out of curiosity of why this happens and not about how to best test if an array is empty.
|
Can anyone explain why the following two statements both evaluate as true?
and
This question is purely out of curiosity of why this happens and not about how to best test if an array is empty. |
|||
|
The first one:
The
In code:
The second comparison, At the end as you see, both operands are converted to Number, and both yield zero, for example:
And empty array produces zero when converted to Number because its string representation is an empty string:
And an empty string converted to Number, yields zero:
Now, the double negation (
The only values that are falsey are:
Anything else will produce See also: |
|||||
|
|
[] == false In this case, the type of the left-hand side is object, the type of the right-hand side is boolean. When object is compared to (== The Abstract Equality Comparison) boolean, Javascript first converts the boolean to a number, yielding 0. Then it converts the object to a "primitive", yielding the empty string "". Next it compares the empty string to 0. The empty string is converted to a number, yielding 0, which is numerically equal to the 0 on the right-hand side, so the result of the entire expression is true. Ref: http://es5.github.com/#x11.9.3 11.9.3 The Abstract Equality Comparison Algorithm !![] In this case Javascript converts the object to the boolean true, then inverts it, resulting in false. |
|||
|
|
== trueand== falseare generally not ideal style. :-) – T.J. Crowder Nov 19 '10 at 15:21[] == []; // false– Florian Margaine Nov 6 '12 at 9:56