El método Lodash_.isOdd() verifica si el valor dado es un número impar o no.
Sintaxis:
_.isOdd( 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 valores impares.
Valor devuelto : este método devuelve un valor booleano.
Ejemplo 1:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for an Odd console.log("The Value is odd number : " + _.isOdd(3);
Producción :
The Value is odd number : true
Ejemplo 2:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for an Odd console.log("The Value is odd number : " + _.isOdd(2);
Producción :
The Value is odd number : false
Ejemplo 3:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Checking for an Odd console.log("The Value is odd number : " + _.isOdd({});
Producción :
The Value is odd number : false
Publicación traducida automáticamente
Artículo escrito por epistler_999 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA