Created
August 18, 2017 21:32
-
-
Save NickBaynham/e84e5bf7240b0564bd4dc5e5ae8b8810 to your computer and use it in GitHub Desktop.
Sorting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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