Skip to content

Instantly share code, notes, and snippets.

@volkovasystems
Last active December 12, 2020 00:28
Show Gist options
  • Save volkovasystems/0c9913c9c8dccba9da423c7cf30a168f to your computer and use it in GitHub Desktop.
Save volkovasystems/0c9913c9c8dccba9da423c7cf30a168f to your computer and use it in GitHub Desktop.
get all unique element object in array by property and return as is
Array
.from(
(
(
new Map(
(
array
.map(
function( element ){
return (
[
element[ property ],
element
]
);
}
)
)
)
)
.values( )
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment