Skip to content

Instantly share code, notes, and snippets.

@dignifiedquire
Created April 26, 2016 15:37
Show Gist options
  • Save dignifiedquire/735bca915280fc05c6d6bb98e7b39c23 to your computer and use it in GitHub Desktop.
Save dignifiedquire/735bca915280fc05c6d6bb98e7b39c23 to your computer and use it in GitHub Desktop.
function cmp (a, b) {
return (a > b) - (a < b)
}
['#', 'ö', 'a', 'n', 'A', 'I', 'z', 'Z', '1'].sort(cmp)
// => [ '#', '1', 'A', 'I', 'Z', 'a', 'n', 'z', 'ö' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment