It returns true if the argument is not a number. Example:
true
document.write(isNaN("Hello")+ "<br>"); document.write(isNaN("2013/06/23")+ "<br>"); document.write(isNaN(123)+ "<br>");
The output will be:
true true false