Skip to content

Instantly share code, notes, and snippets.

@nairihar
Created June 22, 2018 13:11
Show Gist options
  • Save nairihar/49bcb474fc32bdc5ccaa2aab2b3693d1 to your computer and use it in GitHub Desktop.
Save nairihar/49bcb474fc32bdc5ccaa2aab2b3693d1 to your computer and use it in GitHub Desktop.
JavaScript series, part 1, Set, medium
const mySet = new Set();
console.log(mySet.size);
// 0
mySet.add(1);
mySet.add(2);
mySet.add(2);
console.log(mySet.size);
// 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment