Guest User

Untitled

a guest
Nov 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. let myArr = [[1,2,3],[1,2,3],[3,4,5],[5,6,7],[5,6,7]];
  2.  
  3. let myArr = [[1,2,3],[3,4,5],[5,6,7]];
  4.  
  5. let mySet = new Set(myArr);
  6. // Set is: {[1,2,3],[1,2,3],[3,4,5],[5,6,7],[5,6,7]}
Add Comment
Please, Sign In to add comment