Skip to content

Instantly share code, notes, and snippets.

@gpalsingh
Created April 25, 2018 13:45
Show Gist options
  • Save gpalsingh/844d7ffd32b1cbc79cf9bb3de93edbc7 to your computer and use it in GitHub Desktop.
Save gpalsingh/844d7ffd32b1cbc79cf9bb3de93edbc7 to your computer and use it in GitHub Desktop.
set_add
const animals = new Set(["rat", "dog", "cat", "horse", "elephant", "rat", "rat", "cat"]);
let new_set = animals.add("toucan");
console.log(animals === new_set);
for (let animal of animals) {
console.log(animal);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment