Skip to content

Instantly share code, notes, and snippets.

@DavidQL
Created August 5, 2011 15:34
Show Gist options
  • Save DavidQL/1127783 to your computer and use it in GitHub Desktop.
Save DavidQL/1127783 to your computer and use it in GitHub Desktop.
(function() {
var sorted_array = [1,22,13,4,5].sort();
console.log(sorted_array);
// returns [1, 13, 22, 4, 5]
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment