isNaN Function Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number).
isNaN(numValue)
Return Value: true if the value converted to the Number type is the NaN, otherwise false.
Points: 1) The required numValue is the value to be tested against NaN.
2) You typically use this method to test return values from the parseInt and parseFloat methods.
3) Alternatively, a variable that contains NaN or another value could be compared to itself. If it compares as unequal, it is NaN. This is because NaN is the only value that is not equal to itself.
Examples:
// Returns false.
isNaN(100);
// Returns false.
isNaN("100");
// Returns true.
isNaN("ABC");
// Returns true.
isNaN("10C");
// Returns true.
isNaN("abc123");
// Returns true.
isNaN(Math.sqrt(-1));
Mark This Response as Answer
--
Chandu
http://www.dotnetfunda.com/images/dnfmvp.gif
Programmer123, if this helps please login to Mark As Answer. | Alert Moderator