Skip to content

Instantly share code, notes, and snippets.

@nairihar
Created June 23, 2018 14:48
Show Gist options
  • Save nairihar/4f964ee032e16ade87c8609fcac939b6 to your computer and use it in GitHub Desktop.
Save nairihar/4f964ee032e16ade87c8609fcac939b6 to your computer and use it in GitHub Desktop.
JavaScript series, part 1, Set, medium
const mySet = new Set();
mySet.add('a');
mySet.add('b');
const mySetKeysArray = [...mySet.keys()];
const mySetValuesArray = [...mySet.keys()];
/*
mySetKeysArray
['a', 'b']
mySetValuesArray
['a', 'b']
*/
@VahanAper
Copy link

const mySetValuesArray = [...mySet.values()];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment