Created
November 28, 2020 22:37
-
-
Save jarodsim/ba6b85fac44c59c9d775e7c410d3edc2 to your computer and use it in GitHub Desktop.
This file contains 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
// criando uma várivel com valor do tipo primitivo | |
let idade1 = 10 | |
let idade2 = idade1 | |
idade1 = 15 | |
console.log(idade2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment