Skip to content

Instantly share code, notes, and snippets.

@Ref-Bit
Created December 30, 2020 09:18
Show Gist options
  • Save Ref-Bit/11adb5cf88fbb7d901322fb614f20fbd to your computer and use it in GitHub Desktop.
Save Ref-Bit/11adb5cf88fbb7d901322fb614f20fbd to your computer and use it in GitHub Desktop.
Get all unique values in a JavaScript array (remove duplicates)
const onlyUnique = (value, index, self) => self.indexOf(value) === index;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment