Mega Code Archive

 
Categories / JavaScript DHTML / Javascript Objects
 

IsNaN() Example

<html> <body> <button onclick="alert(isNaN('12.34'));">isNaN('12.34') True</button> <button onclick="alert(isNaN('Hello'));">isNaN('Hello') False</button> </body> </html>