Skip to content

Instantly share code, notes, and snippets.

@adriancmiranda
Created April 30, 2014 16:20
Show Gist options
  • Save adriancmiranda/d6ae057dcf65939ce3fc to your computer and use it in GitHub Desktop.
Save adriancmiranda/d6ae057dcf65939ce3fc to your computer and use it in GitHub Desktop.
if(!Array.sortOn){
Array.prototype.sortOn = function($key){
this.sort(function(a, b){
return (a[$key] > b[$key]) - (a[$key] < b[$key]);
}
);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment