isMatch_.isMatch(object, properties)
Tells you if the keys and values in properties are contained in object.
1 2 3 | var stooge = {name: 'moe' , age: 32}; _.isMatch(stooge, {age: 32}); => true |
isMatch_.isMatch(object, properties)
Tells you if the keys and values in properties are contained in object.
1 2 3 | var stooge = {name: 'moe' , age: 32}; _.isMatch(stooge, {age: 32}); => true |
Designed by : w10schools
service@w10schools.com
Please login to continue.