Skip to content

Instantly share code, notes, and snippets.

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