var _ =require('underscore');var student ={name:'Sam', age:10}//Example 1: Check if name Sam is present in studentvar 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);