Skip to content

Instantly share code, notes, and snippets.

@kovaldn
Last active December 17, 2015 01:49
Show Gist options
  • Save kovaldn/5530744 to your computer and use it in GitHub Desktop.
Save kovaldn/5530744 to your computer and use it in GitHub Desktop.
JavaScript: array.js
// Sort numerically and ascending:
var myarray=[25, 8, 7, 41]
myarray.sort(function(a,b){return a - b}) //Array now becomes [7, 8, 25, 41]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment