Underscore.JS - isMatch method



Syntax

_.isMatch(object, properties)

isMatch method checks if object contains the properties. See the below example −

Example

var _ = require('underscore');

var student = {name: 'Sam', age: 10 }
//Example 1: Check if name Sam is present in student
var result = _.isMatch(student, {name: 'Sam'});
console.log(result);

//Example 2: Check if age 10 is present in student
result = _.isMatch(student, {age: 10});
console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

true
true
underscorejs_comparing_objects.htm
Advertisements