Skip to content

Instantly share code, notes, and snippets.

@gpalsingh
Created April 25, 2018 13:27
Show Gist options
  • Save gpalsingh/be800ccb2609912dc52f4d10de2d57be to your computer and use it in GitHub Desktop.
Save gpalsingh/be800ccb2609912dc52f4d10de2d57be to your computer and use it in GitHub Desktop.
set_loop_for_of
const animals = new Set(["rat", "dog", "cat", "horse", "elephant", "rat", "rat", "cat"]);
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