Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ColonelMoutarde/d30953da3e3f54a75461e2bc32070961 to your computer and use it in GitHub Desktop.
Save ColonelMoutarde/d30953da3e3f54a75461e2bc32070961 to your computer and use it in GitHub Desktop.
function removeDuplicates(myArr, prop) {
return myArr.filter((obj, pos, arr) => {
return arr.map(mapObj => mapObj[prop]).indexOf(obj[prop]) === pos;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment