Created
January 19, 2019 16:19
-
-
Save mateusmarquezini/5dad39535f73e986831566e17de60627 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let setDados = new Set() | |
setDados.add(1) | |
setDados.add(2) | |
setDados.add(3) | |
console.log(setDados.size) // 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment