if i want to test the result of an expression and the function would return NaN
how would i check that?
examples: $('amount').value.toInt()!='NaN'
^ does not work and i assume that the returned value is not a string,
$('amount').value.toInt()!=NaN
^ doesnt seem to work either and this one seems obvious
so how do i check wether the returned value is not a number?
|
|
|
||
|
|
|
|
Test if a value is NaN with the isNaN() function, appropriately enough. NaN is defined to be unequal to everything, including itself. For the sake of completeness:
|
||||||||||||||
|
