up vote 6 down vote favorite
share [g+] share [fb]

Despite the rather clear documentation which says that parseFloat() can return NaN as a value, when I write a block like:

if ( NaN == parseFloat(input.text) ) {
  errorMessage.text = "Please enter a number."
}

I am warned that the comparison will always be false. And testing shows the warning to be correct.

Where is the corrected documentation, and how can I write this to work with AS3?

link|improve this question

feedback

4 Answers

up vote 15 down vote accepted

Because comparing anything to NaN is always false. Use isNaN() instead.

link|improve this answer
So even: if (NaN==NaN) { /* unreachable */ } – dlamblin Sep 29 '08 at 20:54
feedback

isNaN(parseFloat(input.text))

link|improve this answer
feedback

BTW, if for some reason you don't have access to isNaN(), the traditional method is to compare the number to itself:

if( number != number )
{
    //Is NaN 
}
link|improve this answer
feedback

Documentation can be found in the Adobe Flex Language Reference Here as well as other globally available functions.

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.