Saturday, November 15, 2025
HomeLanguagesJavascriptUnderscore.js _.sneq() Method

Underscore.js _.sneq() Method

The _.sneq() method checks whether each of the arguments is strictly not equal (===) to each other. Hence, returning a boolean correspondingly.

Syntax:

_.sneq( val1, val2, ..., valn );

Parameters: This method takes n values to operate on them.

Return Value: This method returns a boolean.

Note: This will not work in normal JavaScript because it requires the underscore.js contrib library to be installed. Underscore.js contrib library can be installed using npm install underscore-contrib –save.

Example 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);


Output:

Each arguments are not equal to each other : true

Example 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);


Output:

Each arguments are not equal to each other : false

Example 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);


Output:

Each arguments are not equal to each other : true

Example 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);


Output:

Each arguments are not equal to each other : false
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6890 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS