Subrayado.js _.isNegative() Método

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

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 *