Skip to content

Instantly share code, notes, and snippets.

@SebastianUdden
Created May 16, 2022 12:38
Show Gist options
  • Select an option

  • Save SebastianUdden/0c0b0bc1862710c40e1affd1fc586c3a to your computer and use it in GitHub Desktop.

Select an option

Save SebastianUdden/0c0b0bc1862710c40e1affd1fc586c3a to your computer and use it in GitHub Desktop.
Sort by name
const byName = (a, b) => {
if (a.name > b.name) return 1;
if (a.name < b.name) return -1;
return 0;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment