Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active February 27, 2018 05:23
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/7dae242fea73cce06de387a22515cba0 to your computer and use it in GitHub Desktop.
Save Ibro/7dae242fea73cce06de387a22515cba0 to your computer and use it in GitHub Desktop.
CodingBlast blog - Set, Map - https://codingblast.com/javascript-set-map/
let arr = [ 13, 11, 15, 21, 13, 11, 17, 17, 19, 19, 21 ];
let uniqueArray = [...new Set(arr)];
console.log(uniqueArray); // [13, 11, 15, 21, 17, 19]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment