Created
April 25, 2018 13:27
-
-
Save gpalsingh/be800ccb2609912dc52f4d10de2d57be to your computer and use it in GitHub Desktop.
set_loop_for_of
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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