Subrayado.js _.gt() Método

Los _. Comprobaciones del método gt()

Sintaxis:

_.gt( val1, val2,..., valn );

Parámetros: Este método toma n valores para operar sobre ellos.

Valor de retorno: este método r

Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca de contribuciones underscore.js. 

La biblioteca de contribución underscore.js se puede instalar mediante npm install underscore-contrib –save.

Ejemplo 1: 

Javascript

// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
  
var greater  = _.gt(4, 1);
  
console.log(" Each argument is greater than"+
            " its next argument :",greater);

Producción:

Each argument is greater than its next argument : true

Ejemplo 2:

Javascript

// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
  
var greater  = _.gt(4, 1, 4);
  
console.log(" Each argument is greater than"+
            " its next argument :",greater);

Producción:

Each argument is greater than its next argument: false

Ejemplo 3: 

Javascript

// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
  
var greater  = _.gt(4, 3, 1);
  
console.log(" Each argument is greater than"+
            " its next argument :",greater);

Producción:

Each argument is greater than its next argument : 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 *