Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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.

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

5 Answers

up vote 10 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

share|improve this answer
Oh. I see now. Thanks – joseph Aug 8 '11 at 0:20
5  
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

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.

share|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
8  
@joseph "NaN" == "NaN" is comparing two (equal) strings. – dlev Aug 8 '11 at 0:21

The proper way to check this would be:

isNaN(parseInt(variable))

If whatever you're checking is a NaN, that function will return true.

Update ** After jQuery 1.7, they changed this function to isNumeric().

Documentation of the switch

share|improve this answer
  • 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.

share|improve this answer

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"

share|improve this answer
1  
You should use the isNaN function around the parse. – krillgar Sep 27 '12 at 19:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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