Skip to content

Instantly share code, notes, and snippets.

@srezasm
Created September 6, 2020 13:34
Show Gist options
  • Save srezasm/ece88ce14f2f7a74815e422670b4a135 to your computer and use it in GitHub Desktop.
Save srezasm/ece88ce14f2f7a74815e422670b4a135 to your computer and use it in GitHub Desktop.
filter unique values
const array = [1, 1, 2, 3, 6, 6, 7];
console.log(
[...new Set(array)]
);
// Result: [1, 2, 3, 4, 7]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment