The Number.isInteger()
method determines whether the passed value is an integer.
Syntax
Number.isInteger(value)
Parameters
value
- The value to be tested for being an integer.
Return value
A Boolean
indicating whether or not the given value is an integer.
Description
If the target value is an integer, return true
, otherwise return false
. If the value is NaN
or infinite, return false
.
Examples
Number.isInteger(0); // true Number.isInteger(1); // true Number.isInteger(-100000); // true Number.isInteger(0.1); // false Number.isInteger(Math.PI); // false Number.isInteger(NaN); // false Number.isInteger(Infinity); // false Number.isInteger(-Infinity); // false Number.isInteger('10'); // false Number.isInteger(true); // false Number.isInteger(false); // false Number.isInteger([1]); // false
Polyfill
Number.isInteger = Number.isInteger || function(value) { return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; };
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Number.isInteger' in that specification. |
Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) The definition of 'Number.isInteger' in that specification. |
Living Standard |
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | 16 | No | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | 16 | No | (Yes) | (Yes) |
See also
- The
Number
object it belongs to.
Document Tags and Contributors
Tags:
Contributors to this page:
fscholz,
jameshkramer,
nikc.org,
nmve,
allevo,
b2m9,
eduardoboucas,
K._,
SphinxKnight,
Jeremie,
ziyunfei,
Mingun,
realityking,
rvighne,
kscarfone,
fusionchess,
Sheppy,
ethertank
Last updated by:
fscholz,