My objects:
[ { description: \'object1\', id: 1 }, { description: \'object2\', id: 2 } { description: \'object3\
With the find method, your callback is going to be passed the value of each element, like:
find
{ description: 'object1', id: 1 }
Thus, you want code like:
_.find(savedViews, function(o) { return o.description === view; })