Number.isInteger()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
El método Number.isInteger()
determina si el valor pasado es de tipo entero.
Pruébalo
Sintaxis
Number.isInteger(valor)
Parámetros
valor
-
El valor a ser probado si es un entero.
Valor devuelto
Un Boolean
indicando si el valor dado es un entero o no.
Descripción
Si el valor seleccionado es un entero, devuelve true
, de lo contrario false
. Si el valor es NaN
o infinito, devuelve false
.
Ejemplos
js
Number.isInteger(0); // true
Number.isInteger(1); // true
Number.isInteger(-100000); // true
Number.isInteger(99999999999999999999999); // 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
js
Number.isInteger =
Number.isInteger ||
function (value) {
return (
typeof value === "number" &&
isFinite(value) &&
Math.floor(value) === value
);
};
Especificaciones
Specification |
---|
ECMAScript Language Specification # sec-number.isinteger |
Compatibilidad con navegadores
Report problems with this compatibility data on GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
isInteger |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on 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.
Ver también
- El objeto
Number
al que pertenece.