With Backbone.js I\'ve got a collection set up with a comparator function. It\'s nicely sorting the models, but I\'d like to reverse the order.
How can I sort the m
Here's a quick and easy way to reverse-sort a collection's models using UnderscoreJS
var reverseCollection = _.sortBy(this.models, function(model) { return self.indexOf(model) * -1; });