I have a model with several object:
//Model Friend = Backbone.Model.extend({ //Create a model to hold friend attribute name: null, }); //objects va
You can call findWhere() on Backbone collections, that will return exactly the model you are looking for.
findWhere()
Example:
var lee = friends.findWhere({ name: 'Lee' });