I have a value and i need to return the objects that contains this value in propertie.
var search=\'CPP@\'; var results=_.filter(collection,{VAL:search});
var results = _.filter(collection,function(obj) { return obj.VAL.indexOf(search) !== -1; });