Skip to content

Instantly share code, notes, and snippets.

@kpman
Created August 30, 2014 17:23
Show Gist options
  • Save kpman/6970d9978f9ed5bdf26e to your computer and use it in GitHub Desktop.
Save kpman/6970d9978f9ed5bdf26e to your computer and use it in GitHub Desktop.
function compareNumbers(x, y) {
return x-y;
}
var numbers = [1,4,3,2];
numbers.sort(compareNumbers);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment