Last active
November 28, 2020 22:26
-
-
Save jarodsim/13089e5a99d77b8d890a547077aa9acc 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 dois objetos | |
let carro1 = {modelo: "fiat", cor: "azul"} | |
let carro2 = carro1 | |
// aLterando a propriedade "cor" do carro1 | |
carro1.cor = "verde" | |
// exibinDo As propriedades do carro2 | |
console.log("carro2: " + carro2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment