isNegative devolviendo correspondientemente un valor booleano.
Sintaxis:
_.isNegative( value );
Parámetros:
- valor: valor dado para comprobar si tiene un valor negativo.
Valor devuelto: este método devuelve un valor booleano (devuelve verdadero si el valor dado es negativo, de lo contrario, falso).
Nota: npm install underscore-contrib .
Ejemplo 1:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); // Checking console.log("The Value is Negative : " + _.isNegative(-200020));
Producción:
The Value is Negative : true
Ejemplo 2:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); // Checking console.log("The Value is Negative : " + _.isNegative(1000000));
Producción:
The Value is Negative : false
Ejemplo 3: para una string que contiene valores negativos, este método devuelve verdadero.
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); // Checking console.log("The Value is Negative : " + _.isNegative("-1"));
Producción:
The Value is Negative : true