Subrayado.js _.sneq() Método

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

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 *