Los _. Comprobaciones del método gte()
Sintaxis:
_.gte( 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 = _.gte(4, 1, 1); console.log("Each argument is greater than or"+ " equal to its next argument :",greater);
Producción:
Each argument is greater than or equal to its next argument : true
Ejemplo 2:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var greater = _.gte(4, 3, 2, 1); console.log("Each argument is greater than or"+ " equal to its next argument :",greater);
Producción:
Each argument is greater than or equal to its next argument : true
Ejemplo 3:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var greater = _.gte(4, 3, 2, 1, 44); console.log("Each argument is greater than or"+ " equal to its next argument :",greater);
Producción:
Each argument is greater than or equal to its next argument : false