Created
October 13, 2022 16:30
-
-
Save zakuroishikuro/cabf700e1189db5b7d216534ba08320b to your computer and use it in GitHub Desktop.
This file contains 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 comp = (a, b) => +(a > b || (a < b && -1)); | |
[{ id: "a" }, { id: "c" }, { id: "b" }].sort((a, b) => comp(a.id, b.id)); | |
//=> [{ id: "a" }, { id: "b" }, { id: "c" }] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment