Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active February 26, 2018 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/428e1389b57602aaa489bfe845a02bbe to your computer and use it in GitHub Desktop.
Save Ibro/428e1389b57602aaa489bfe845a02bbe to your computer and use it in GitHub Desktop.
CodingBlast blog - Set, Map - https://codingblast.com/javascript-set-map/
let set = new Set([3, 5, true, 'This is a string, obviously.']);
for (let item of set.values()) {
console.log(item);
}
console.log('Adding a new value');
set.add(5);
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