Skip to content

Instantly share code, notes, and snippets.

@alegut
Created January 13, 2019 16:51
Show Gist options
  • Save alegut/d9ef5ece0daaf74a0d142e9b81f8b401 to your computer and use it in GitHub Desktop.
Save alegut/d9ef5ece0daaf74a0d142e9b81f8b401 to your computer and use it in GitHub Desktop.
JS sorting numbers
const sorted = [4,78,6,-8].sort((a,b) => a - b);
console.log(sorted);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment