Underscore.JS - isEqual method
Syntax
_.isEqual(object, other)
isEqual method do a deep compare of object with other. See the below example −
Example
var _ = require('underscore');
var student = {name: 'Sam', age: 10, class: { name: '10th', section: 'B'}}
var student1 = {name: 'Sam', age: 10, class: { name: '10th', section: 'B'}}
// Example: Compare student with student1 using ==
console.log(student == student1);
var result = _.isEqual(student, student1);
console.log(result);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
false true
underscorejs_comparing_objects.htm
Advertisements