parseFloat("NaN")

returns "NaN", but

parseFloat("NaN") == "NaN"

returns false. Now, that's probably a good thing that it does return false, but I don't understand how this is so. Did the JavaScript creators just make this a special case? Because otherwise I can't understand how this returns false.

link|improve this question

5  
A NaN is never equal to itself, by definition. It works this way in any language. – Keith Aug 8 '11 at 0:21
feedback

4 Answers

up vote 5 down vote accepted

When a JavaScript function returns NaN, this is not a literal string but an object property in the global space. You cannot compare it to the string "NaN".

See https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/NaN

link|improve this answer
Oh. I see now. Thanks – joseph Aug 8 '11 at 0:20
4  
NaN is not an object; it is a special primitive value. (Which happens to be the value of a read-only property of the global object). – Henning Makholm Aug 8 '11 at 1:00
@Henning Good catch, fixed my answer – Phil Aug 8 '11 at 1:03
feedback

It's a special case, NaN is the only thing in Javascript not equal to itself.

Although the other answers about strings vs the NaN object are right too.

link|improve this answer
Why then does "NaN" == "NaN" return true? It probably wouldn't make sense for that to return false, but... – joseph Aug 8 '11 at 0:20
6  
@joseph "NaN" == "NaN" is comparing two (equal) strings. – dlev Aug 8 '11 at 0:21
feedback
  • When Number (returned by ParseFloat) compares with string string converted to Number
  • NaN is not equal to any other object ( including NaN)

You get NaN==NaN . It is false by second rule.

link|improve this answer
feedback

parseFloat("NaN") returns "NaN", but

parseFloat("NaN") == "NaN" returns false.

to make your equality check work the way you want it, simply convert the parseFloat() to a string:

parseFloat(variable) + "" == "NaN"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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