Skip to content

Instantly share code, notes, and snippets.

@ldmarz
Created August 10, 2018 14:03
Show Gist options
  • Save ldmarz/b6c353595c612d448c54eb3cb3dd6f1d to your computer and use it in GitHub Desktop.
Save ldmarz/b6c353595c612d448c54eb3cb3dd6f1d to your computer and use it in GitHub Desktop.
Uniq example from lodash function
const someArray = [1, 1, 3]
const cleanArray = _.uniq(someArray);
// cleanArray === [1, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment