Created
October 16, 2019 17:04
-
-
Save cnmoro/105d5af394902d63523cbb3cf0d52d84 to your computer and use it in GitHub Desktop.
JS Map Distinct
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
let uniqueValues = array.map(v => v.property) | |
.filter((value, index, self) => self.indexOf(value) === index); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment