Skip to content
FLAVIO COPES
flaviocopes.com
2026

The Number isInteger() method

By Flavio Copes

Learn how the JavaScript Number.isInteger() method checks whether a value is an integer, returning false for decimals, strings, booleans, objects, and arrays.

~~~

Returns true if the passed value is an integer. Anything else, booleans, strings, objects, arrays, returns false:

Number.isInteger(1) //true
Number.isInteger(-237) //true
Number.isInteger(0) //true

Number.isInteger(0.2) //false
Number.isInteger('Flavio') //false
Number.isInteger(true) //false
Number.isInteger({}) //false
Number.isInteger([1, 2, 3]) //false
Tagged: JavaScript ยท All topics
~~~

Related posts about js: