Skip to content

Instantly share code, notes, and snippets.

@codemilli
Last active April 6, 2016 20:44
Show Gist options
  • Save codemilli/7969c104438c140c643a0b29adfefd74 to your computer and use it in GitHub Desktop.
Save codemilli/7969c104438c140c643a0b29adfefd74 to your computer and use it in GitHub Desktop.
var s = new Set();
s.add(1).add(2).add(1);
console.log('Size of s => ', s.size); // 2
console.log('s has 2 => ', s.has(2)); // true
s.delete(2);
console.log('s has 2 => ', s.has(2)); // false
s.clear();
console.log('s => ', s); // Set {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment