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