El método Lodash _.isNegative() verifica si el valor dado es un valor negativo o no y devuelve el valor booleano correspondiente.
Sintaxis:
_.isNegative( value );
Parámetros: este método toma un solo parámetro como se mencionó anteriormente y se describe a continuación:
- valor: valor dado para comprobar si tiene un valor negativo.
Valor devuelto: este método devuelve un valor booleano verdadero si el valor dado es negativo, de lo contrario, falso.
Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca de contribuciones lodash.js. La biblioteca de contribuciones de Lodash.js se puede instalar mediante npm install lodash-contrib .
Ejemplo 1:
Javascript
// Defining lodash contrib variable var _ = require('lodash-contrib'); // Checking for _.isNegative() method console.log("The Value is Negative : " + _.isNegative(-500)); console.log("The Value is Negative : " + _.isNegative(500)); console.log("The Value is Negative : " + _.isNegative('G'));
Producción:
The Value is Negative : true The Value is Negative : false The Value is Negative : false
Ejemplo 2:
Javascript
// Defining lodash contrib variable var _ = require('lodash-contrib'); // Checking for _.isNegative() method console.log("The Value is Negative : " + _.isNegative(-10.5)); console.log("The Value is Negative : " + _.isNegative(10.5)); console.log("The Value is Negative : " + _.isNegative({}));
Producción:
The Value is Negative : true The Value is Negative : false The Value is Negative : false
Publicación traducida automáticamente
Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA