El método _.seq() comprueba si cada uno de los argumentos son estrictamente iguales (===) entre sí. Por lo tanto, devolver un valor booleano correspondiente.
Sintaxis:
_.seq( val1, val2, ..., valn );
Parámetros: Este método toma n valores para operar sobre ellos.
Valor de retorno: este método devuelve un valor booleano.
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:
// Defining underscore contrib variable var _ = require('underscore-contrib'); var eq = _.seq( 6, 6, 6 ); console.log("Each of the arguments is equal to others :", eq);
Producción:
Each of the arguments is equal to others : true
Ejemplo 2:
// Defining underscore contrib variable var _ = require('underscore-contrib'); var eq = _.seq( "gfg", "gfg", "gfg" ); console.log("Each of the arguments is equal to others :", eq);
Producción:
Each of the arguments is equal to others : true
Ejemplo 3:
// Defining underscore contrib variable var _ = require('underscore-contrib'); var eq = _.seq( 1, "1", 1 ); console.log("Each of the arguments is equal to others :", eq);
Producción:
Each of the arguments is equal to others : false
Ejemplo 4:
// Defining underscore contrib variable var _ = require('underscore-contrib'); var eq = _.seq( 1, 12, 1 ); console.log("Each of the arguments is equal to others :", eq);
Producción:
Each of the arguments is equal to others : false