'isNaN()' Example : Math « Javascript Objects « JavaScript DHTML
- JavaScript DHTML
- Javascript Objects
- Math
'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>
Related examples in the same category