Determines whether a supplied number is finite.
SyntaxisFinite(number)
Returns true if number is any value other than NaN, -Infinity or Infinity. In those three cases, it returns false.
ExamplesisFinite(); // false, because its NaN
isFinite(42); // true
isFinite(-Infinity); //false
isFinite(4 / 0); //false
See also Other articles
Attributions
Microsoft Developer Network: Article
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4