I am wondering why undefined == undefined but NaN != NaN.
|
Because that's how it is defined in both the Abstract Equality Comparison Algorithm, and the Strict Equality Comparison Algorithm. If either operand to Abstract
EDIT: The motivation for the unequal comparison as noted by @CMS is compliance with the IEEE 754 standard. From the Wikipedia link provided in the comment below:
|
|||||||||
|
|
Not sure why it is like this, but in order to check if a certain statement or variable is a NaN, you should use the isNaN method |
|||
|
|
|
I would assume because the IEEE standard allows for more than one representation of NaN. Not all NaNs are equal to each other... |
|||||||||
|
|
The reasoning is that the creators wanted |
|||
|
|
typeof NaN == "number"– David Hedlund Aug 24 '11 at 15:38NaNis not equal toNaN. – Skilldrick Aug 24 '11 at 15:42