Skip to content

Instantly share code, notes, and snippets.

@macikokoro
Last active August 29, 2015 14:05
Show Gist options
  • Save macikokoro/8d2fe7ee5eebb506b7be to your computer and use it in GitHub Desktop.
Save macikokoro/8d2fe7ee5eebb506b7be to your computer and use it in GitHub Desktop.
Sorting an array numerically and ascending.
var numArray = [2, 4, 6, 4, 8, 10];
numArray.sort(function(a, b) {return a-b});
console.log(numArray);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment