x
1
2
<html>
3
<body>
4
5
<h2>JavaScript Number Methods</h2>
6
7
<p>The isNan() method returns true if the argument is NaN. Otherwise it returns false.</p>
8
9
<p id="demo"></p>
10
11
<script>
12
document.getElementById("demo").innerHTML =
13
isNaN("Hello") + "<br>" + isNaN("10");
14
</script>
15
16
</body>
17
</html>
JavaScript Number Methods
The isNan() method returns true if the argument is NaN. Otherwise it returns false.
true
false