Mega Code Archive

 
Categories / JavaScript Reference / Javascript Methods
 

IsNaN() Example

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