El método Lodash _.isInteger() comprueba si el valor dado es un número entero o no y devuelve el valor booleano correspondiente.
Sintaxis:
_.isInteger( value )
Parámetros: este método acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
- valor: este parámetro contiene el valor que debe verificarse para un entero.
Valor devuelto: este método devuelve un valor booleano (devuelve verdadero si el valor dado es un número entero, de lo contrario, es falso).
Ejemplo 1:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for Integer console.log("The Value is Integer : " + _.isInteger(100));
Producción:
The Value is Integer : true
Ejemplo 2: para una string que contiene un número entero, este método devuelve falso.
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for Integer console.log("The Value is Integer : " + _.isInteger("10"));
Producción:
The Value is Integer : false
Ejemplo 3: Para valor infinito, devuelve falso.
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for Integer console.log("The Value is Integer : " + _.isInteger(Infinity));
Producción:
The Value is Integer : false