Skip to content

Instantly share code, notes, and snippets.

@ahafidi
Last active September 27, 2021 12:42
Show Gist options
  • Save ahafidi/284376ebef01c24bc70fc1b0993d9f47 to your computer and use it in GitHub Desktop.
Save ahafidi/284376ebef01c24bc70fc1b0993d9f47 to your computer and use it in GitHub Desktop.
const arr = [1, 2, 1, 2, 3, 3, 4, 5]
arr.filter((e, i) => arr.indexOf(e) !== i)
// returns [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment