Skip to content

Instantly share code, notes, and snippets.

@kluu1
Last active March 20, 2020 03:14
Show Gist options
  • Select an option

  • Save kluu1/6ffb2d6841d33c6a834281c4a9cac93f to your computer and use it in GitHub Desktop.

Select an option

Save kluu1/6ffb2d6841d33c6a834281c4a9cac93f to your computer and use it in GitHub Desktop.
const zoo = ['tiger', 'horse', 'tiger', 'lion', 'snake', 'bear', 'tiger'];
const animals = zoo.filter((animal, index) => animal.indexOf(animal) !== index);
console.log(animals); // ["horse", "tiger", "lion", "snake", "bear", "tiger"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment