Skip to content

Instantly share code, notes, and snippets.

@mralexho
Created March 1, 2016 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mralexho/01e139460fc40097b15e to your computer and use it in GitHub Desktop.
Save mralexho/01e139460fc40097b15e to your computer and use it in GitHub Desktop.
Alpha sort
myArr.sort(function(a, b) {
var aName = a.text.toLowerCase();
var bName = b.text.toLowerCase();
return ((aName < bName) ? -1 : ((aName > bName) ? 1 : 0));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment