Why is 0 == "" true in JavaScript? I have found a similar post here, but why is a number 0 similar an empty string? Of course, 0 === "" is false.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
| show 4 more comments |
The left operand is of the type Number. In this case, the right operand is coerced to the type Number:
which results in
From the Abstract Equality Comparison Algorithm (number 4):
Source: http://es5.github.com/#x11.9.3 |
|||||||||||||||
|
|
In addition to this answer, there are also other ways in JavaScript where this can catch you out example here |
|||
|
|
|
I assume that P.S.: Judging from other dynamic language perspective. |
|||||
|
==comparison of two falsy values always evaluates to true. But then I rememberedNaN != NaN... and that whole idea collapsed lol. – Šime Vidas Sep 30 '11 at 1:42