var Collection = Backbone.Collection = function(models, options) {
/**/
};
_.extend(Collection.prototype, Events, {...});
/* h: function(){console.log(this.models);},
so after you use the _.extend, in the third or second {} you want to add to the prototype, any of the inputs parameters of the prototype you can access in the 2nd or 3rd part with this.models
*/