Skip to content

Instantly share code, notes, and snippets.

@ksloan
Created June 27, 2014 11:46
Show Gist options
  • Save ksloan/e77034e2bbc4f84b6776 to your computer and use it in GitHub Desktop.
Save ksloan/e77034e2bbc4f84b6776 to your computer and use it in GitHub Desktop.
remove duplicate objects (get unique objects) in javascript array of objects [using underscore.js]
_.uniq(personArray, function(person) { return person.age; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment