I have a model with several object:
//Model Friend = Backbone.Model.extend({ //Create a model to hold friend attribute name: null, }); //objects va
Backbone collections support the underscorejs find method, so using that should work.
find
things.find(function(model) { return model.get('name') === 'Lee'; });