Created
July 9, 2018 23:54
-
-
Save matheus-rossi/e94d611af1378961201875cabad0bce8 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
// Objeto Inicial | |
const refeicao = { | |
id: 1, | |
descricao: 'Café da Manhã' | |
} | |
// Atualizando valores | |
const atualizandoRefeicao = { | |
...refeicao, | |
descricao: 'Café das 09hrs' | |
} | |
console.log(atualizandoRefeicao) // { id: 1, descricao: 'Café das 09hrs' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment