Thursday, August 28, 2025
HomeLanguagesJavascriptLodash _.sneq() Method

Lodash _.sneq() Method

The Lodash _.sneq() method checks whether each of the arguments is strictly not equal (===) to each other or not and returns the corresponding boolean value.

Syntax:

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

Parameters: This method takes n values to operate them _.sneq() method.

Return Value: This method returns a Boolean value.

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

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


Output:

Each arguments are not equal to each other : true

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


Output:

Each arguments are not equal to each other : false

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


Output:

Each arguments are not equal to each other : true

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


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
32244 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6615 POSTS0 COMMENTS
Nicole Veronica
11787 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11833 POSTS0 COMMENTS
Shaida Kate Naidoo
6729 POSTS0 COMMENTS
Ted Musemwa
7010 POSTS0 COMMENTS
Thapelo Manthata
6684 POSTS0 COMMENTS
Umr Jansen
6699 POSTS0 COMMENTS