Created
May 16, 2022 12:38
-
-
Save SebastianUdden/0c0b0bc1862710c40e1affd1fc586c3a to your computer and use it in GitHub Desktop.
Sort by name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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