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.
Remarks
The required numValue is the value to be tested against NAN.
You typically use this method to test return values from the parseInt and parseFloat methods.
Alternatively, a variable 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.