Skip to content

Instantly share code, notes, and snippets.

@MoodyBones
Created December 9, 2021 14:27
Show Gist options
  • Save MoodyBones/bcc89577d2455de72597b62222ad9a4f to your computer and use it in GitHub Desktop.
Save MoodyBones/bcc89577d2455de72597b62222ad9a4f to your computer and use it in GitHub Desktop.
sortBy(field) {
this.applicantsInfo.sort((a, b) => {
if (a[field] < b[field]) {
return -1
}
if (a[field] > b[field]) {
return 1
}
return 0
})
},
// todo: asc, desc, reset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment