Skip to content

Instantly share code, notes, and snippets.

@mhaecal
Created June 7, 2022 14:16
Show Gist options
  • Save mhaecal/ced1b1c2a665ea85c87f8f9f389c6f2e to your computer and use it in GitHub Desktop.
Save mhaecal/ced1b1c2a665ea85c87f8f9f389c6f2e to your computer and use it in GitHub Desktop.
Sort JavaScript Array of Objects Numerically / Alphabetically
items.sort(function(a, b) {
return a.id - b.id || a.name.localeCompare(b.name);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment