Skip to content

Instantly share code, notes, and snippets.

@nairihar
Last active June 23, 2018 12:23
Show Gist options
  • Save nairihar/e6d3159f8c88d5bb43529966f60051cf to your computer and use it in GitHub Desktop.
Save nairihar/e6d3159f8c88d5bb43529966f60051cf 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.delete(1); // true
mySet.delete(3); // false
console.log(...mySet);
// 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment