Created
August 10, 2018 14:03
-
-
Save ldmarz/b6c353595c612d448c54eb3cb3dd6f1d to your computer and use it in GitHub Desktop.
Uniq example from lodash function
This file contains 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
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