PDA

View Full Version : What does is NaN function do?



ajay49560
07-07-2015, 07:15 AM
Hello Friends,

Give me Right Suggestion..

daviddakarai
07-08-2015, 02:48 AM
The isNaN() function determines whether a value is an illegal number (Not-a-Number). This function returns true if the value is NaN, and false if not.

NaN stands for ‘not-a-number’. The function isNaN determines the argument or the value is a NaN. The function returns true if the argument is not a number, otherwise returns false.