Skip to content

Instantly share code, notes, and snippets.

@joemaidman
Created September 7, 2015 12:09
Show Gist options
  • Save joemaidman/dd669b6743e140a18442 to your computer and use it in GitHub Desktop.
Save joemaidman/dd669b6743e140a18442 to your computer and use it in GitHub Desktop.
Javascript sort functions
//Sort values ascending
function compareByValueAsc(a, b) {
if (a.value < b.value)
return -1;
if (a.value > b.value)
return 1;
return 0;
}
//Sort values descending
function compareByValueDes(a, b) {
if (a.value > b.value)
return -1;
if (a.value < b.value)
return 1;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment