El método Lodash _.sneq() comprueba si cada uno de los argumentos es estrictamente diferente (===) entre sí o no y devuelve el valor booleano correspondiente.
Sintaxis:
_.sneq( val1, val2, ..., valn );
Parámetros: Este método toma n valores para operarlos. Método _.sneq().
Valor devuelto: este método devuelve un valor booleano.
Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca de contribuciones lodash.js. La biblioteca de contribuciones de Lodash.js se puede instalar mediante npm install lodash-contrib .
Ejemplo 1:
Javascript
// Defining lodash contrib variable var _ = require('lodash-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 lodash contrib variable var _ = require('lodash-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 lodash contrib variable var _ = require('lodash-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 lodash contrib variable var _ = require('lodash-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
Publicación traducida automáticamente
Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA