I'm working with find Backbone and I have 20-30 results, I need the first result and I don't have the id for filter for id.
model = coleccion.find(
function(e){
return (
e.get('car').category === data_category &&
e.get('full_empty') === 0 &&
e.get('idprovider') === data_provider
);
}
);