I\'m trying to sort a Backbone.js collection in reverse order. There are previous replies on how to do this with integers, but none with strings.
var Chapter
Just add minus before chapter.get
chapter.get
chapters.comparator = function(chapter) { return -chapter.get("title"); };