Skip to content

Instantly share code, notes, and snippets.

@syeo66
Created April 24, 2019 19:34
Show Gist options
  • Save syeo66/40843f806a8aa28c222f4d85775df21f to your computer and use it in GitHub Desktop.
Save syeo66/40843f806a8aa28c222f4d85775df21f to your computer and use it in GitHub Desktop.
Functional Javascript sorting.
const myArray = [0, 3, 6, 1, 2, 5, 4, 8, 7, 9];
const sortedArray = myArray.slice().sort();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment