Skip to content

Instantly share code, notes, and snippets.

@itsdevdom
Last active October 17, 2025 14:17
Show Gist options
  • Select an option

  • Save itsdevdom/3ce94e987e5a01090cbcd75d5a04c0db to your computer and use it in GitHub Desktop.

Select an option

Save itsdevdom/3ce94e987e5a01090cbcd75d5a04c0db to your computer and use it in GitHub Desktop.
unique-array.ts
const array = [];
const uniqueArray = array.filter((value, index, values) => {
return values.indexOf(value) === index;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment