El método Lodash _.isLength() verifica si el valor dado es una longitud tipo Array o no y devuelve el valor booleano correspondiente.
Sintaxis:
_.isLength( 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 una longitud similar a la de una array.
Valor devuelto: este método devuelve un valor booleano (devuelve verdadero si el valor dado es una longitud similar a una array, de lo contrario, es falso).
Ejemplo 1:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for Length console.log("The Value is Length : " + _.isLength(100));
Producción:
The Value is Length : true
Ejemplo 2: Para Infinity, devuelve falso.
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for Length console.log("The Value is Length : " + _.isLength(Infinity));
Producción:
The Value is Length : false
Ejemplo 3: Para strings, devuelve falso.
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for Length console.log("The Value is Length : " + _.isLength("len"));
Producción:
The Value is Length : false
Ejemplo 4:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for Length console.log("The Value is Length : " + _.isLength(Number.MAX_VALUE));
Producción:
The Value is Length : true