Last active
January 25, 2021 03:18
-
-
Save OtacilioN/006106c9c17013415be1f9f1ce553c46 to your computer and use it in GitHub Desktop.
Sabia que você não precisa usar let em todos estes casos?
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
const pessoa = {}; | |
const fila = [{nome: "Otacilio Maia", idade: "24"}]; | |
pessoa.nome = "Antônio fakersom"; | |
pessoa.idade = "42"; | |
pessoa.frase = "JavaScript é super legal"; | |
fila.push(pessoa); | |
fila[0].frase = "E tudo faz sentido"; | |
console.log(fila, pessoa); // Qual é a saída? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment