Last active
February 26, 2018 09:23
-
-
Save Ibro/6b911ec03bd74ff8a3aa8c9e29197a7d to your computer and use it in GitHub Desktop.
CodingBlast blog - Set, Map - https://codingblast.com/javascript-set-map/
This file contains 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
let set = new Set([3, 5, true, 'This is a string, obviously.']); | |
for (let item of set.values()) { | |
console.log(item); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment