Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active February 27, 2018 04:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/5a9b12e3ccd49bed0f753f5890b80ba8 to your computer and use it in GitHub Desktop.
Save Ibro/5a9b12e3ccd49bed0f753f5890b80ba8 to your computer and use it in GitHub Desktop.
CodingBlast blog - Set, Map - https://codingblast.com/javascript-set-map/
let set = new Set([9, 15]);
set.add(44);
let arr = [...set];
console.log(arr); // [9, 15, 44]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment