I\'m using Javascript sort (with Underscore.js):
sort
_.sortBy([\"Bob\", \"Mary\", \"Alice\"], function (name) {return name}) > [\"Alice\", \"Bob\", \
Instead of throwing underscorejs away, I'd rather use it together with Array.reverse to utilize the best of both.
_.sortBy(["Bob", "Mary", "Alice"], function (name) {return name}) .reverse()