Skip to content

Instantly share code, notes, and snippets.

@NickBaynham
Created August 18, 2017 21:32
Show Gist options
  • Save NickBaynham/e84e5bf7240b0564bd4dc5e5ae8b8810 to your computer and use it in GitHub Desktop.
Save NickBaynham/e84e5bf7240b0564bd4dc5e5ae8b8810 to your computer and use it in GitHub Desktop.
Sorting
console.log([4,21,6,44,9,99,21,54].sort(function(prev, current){
return prev - current;
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment