Guest User

Untitled

a guest
Jan 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. let setDados = new Set([1, "dois", 3, "quatro", 5])
  2. for (valor of setDados){
  3. console.log(valor) // 1, dois, 3, quatro, 5
  4. }
Add Comment
Please, Sign In to add comment