Skip to content

Instantly share code, notes, and snippets.

@akuafif
Last active July 15, 2023 15:33
Show Gist options
  • Save akuafif/3e19d155cbcabdf872ac11975cca50e2 to your computer and use it in GitHub Desktop.
Save akuafif/3e19d155cbcabdf872ac11975cca50e2 to your computer and use it in GitHub Desktop.
sortDescArray.js
// Sort Descending Date
tempArray = originalArray.slice();
tempArray.sort(function(a,b){
return new Date(b.date) - new Date(a.date);
});
for (i = 0; i < tempArray.length; i++) {
console.log(`\t${i + 1}) ${tempArray[i].date} - ${tempArray[i].displayName}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment