Método Lodash _.isLength()

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

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *