Skip to content

Instantly share code, notes, and snippets.

@lumio
Last active March 21, 2018 19:40
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 lumio/265318880bfc354aa5736853baf3aeac to your computer and use it in GitHub Desktop.
Save lumio/265318880bfc354aa5736853baf3aeac to your computer and use it in GitHub Desktop.
Sorting done right
const localeCompare = ( a, b ) => a.localeCompare( b, 'de' );
const fruits = [ 'Äpfel', 'Ananas', 'Birnen' ].sort( localeCompare );
console.log( fruits ); // [ 'Ananas', 'Äpfel', 'Birnen' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment