Skip to content

Instantly share code, notes, and snippets.

@devmobasa
Created February 26, 2018 13:32
Show Gist options
  • Select an option

  • Save devmobasa/2ebc49f9f49af2ecb21a073d946e9871 to your computer and use it in GitHub Desktop.

Select an option

Save devmobasa/2ebc49f9f49af2ecb21a073d946e9871 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) {
console.log(item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment