Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created December 31, 2015 02:31
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 chuck0523/c25c3794c98531df23a8 to your computer and use it in GitHub Desktop.
Save chuck0523/c25c3794c98531df23a8 to your computer and use it in GitHub Desktop.
var nums = [700, 80, 9];
nums.sort(); // [700, 80, 9]
nums.sort(function(a, b) { return a - b; } ); // [9, 80, 700]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment