Last active
February 13, 2023 20:05
-
-
Save edrdesigner/c21cc9a6603ff0f3e53e9471784d0ef4 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
static getUniqueArrayListBy(arr, key) { | |
return [...new Map(arr.map((item) => [item[key], item])).values()]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment