Open In App

Lodash _.eq() Method

Improve
Improve
Like Article
Like
Save
Share
Report

Lodash _.eq() method is used to find whether the two values are equivalent or not by performing the SameValueZero comparison. It returns true if the values are equivalent. Otherwise, it returns false.

Syntax:

_.eq(value, other);

Parameters:

  • value: This parameter holds the value to compare.
  • other: This parameter holds the other value to compare.

Return Value:

This method returns true if the values are equivalent, else false.

Example 1: In this example, we are checking whether the given two values are the same or not by the use of the _.eq() method.

Javascript




// Requiring the lodash library 
const _ = require("lodash"); 
      
// Use of _.eq method
console.log(_.eq("Geeks", "Geeks" ));
console.log(_.eq("Geeks", Object("Geeks")));
console.log(_.eq(NaN, NaN));


Output:

true
false
true

Example 2: In this example, we are checking whether the given two objects are the same or not by the use of the _.eq() method.

Javascript




// Requiring the lodash library 
const _ = require("lodash");
 
// Given values
let object = { 'gfg': 2020 };
let other = { 'gfg': 2020 };
 
// Use of _.eq method
console.log(_.eq(object, object));
console.log(_.eq(object, other));


Output:

true
false

Last Updated : 25 Oct, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads