Skip to content

Instantly share code, notes, and snippets.

@nickarthur
Created November 19, 2013 08:01
Show Gist options
  • Save nickarthur/7541892 to your computer and use it in GitHub Desktop.
Save nickarthur/7541892 to your computer and use it in GitHub Desktop.
ARRAY SORT CLOUDPARTY cloudparty which sorts by the time in seconds
//ARRAY SORT CLOUDPARTY cloudparty
// Sort the total and current results lists by time
arraySort(resultsTotalArray, 'sortByTime');
arraySort(resultsCurrentArray, 'sortByTime');
// Sort the total and current results lists by time
arraySort(resultsCurrentArray, 'sortByTime');
function sortByTime(a, b) {
return (a[2] < b[2] ? -1 : (a[2] > b[2] ? 1 : 0));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment