Guest User

Untitled

a guest
Nov 22nd, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.07 KB | None | 0 0
  1. // Turns [1,2,2,2] into [1,2]
  2.  
  3. const arr = [1,2,2,2]
  4.  
  5. [...new Set(arr)]
Add Comment
Please, Sign In to add comment