El método _.sneq() cis===otro.
Sintaxis:
_.sneq( 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 contribuciones Underscore.js se puede instalar usando npm install underscore-contrib –save.
Ejemplo 1:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var eq = _.sneq( 1, 2, 3 ); console.log("Each arguments are not " + "equal to each other :", eq);
Producción:
Each arguments are not equal to each other : true
Ejemplo 2:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var eq = _.sneq( 2, 2, 2 ); console.log("Each arguments are not " + "equal to each other :", eq);
Producción:
Each arguments are not equal to each other : false
Ejemplo 3:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var eq = _.sneq( "2", 2, 2 ); console.log("Each arguments are not " + "equal to each other :", eq);
Producción:
Each arguments are not equal to each other : true
Ejemplo 4:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var eq = _.sneq( "2", "2", "2" ); console.log("Each arguments are not " + "equal to each other :", eq);
Producción:
Each arguments are not equal to each other : false