vote up 5 vote down star

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?

flag

4 Answers

vote up 11 vote down check

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

link|flag
So even: if (NaN==NaN) { /* unreachable */ } – dlamblin Sep 29 '08 at 20:54
vote up 2 vote down

isNaN(parseFloat(input.text))

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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