Created
July 10, 2018 15:43
-
-
Save matheus-rossi/d81b8b9f3c9c03abfb30bae653dba6bf 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
// Arrays Iniciais | |
const refeicaoArray = [ | |
{ id: 1, descricao: 'Café da Manhã', calorias: 420 }, | |
{ id: 2, descricao: 'Almoço', calorias: 580 } | |
] | |
const novaRefeicao = { | |
id: 3, | |
descricao: 'Café da Tarde', | |
calorias: 280 | |
} | |
// Adicionando item ao array | |
const refeicaoAtualizada = [ ...refeicaoArray, novaRefeicao ] | |
console.log(refeicaoAtualizada) //[ { id: 1, descricao: 'Café da Manhã', calorias: 420 }, { id: 2, descricao: 'Almoço', calorias: 580 }, { id: 3, descricao: 'Café da Tarde', calorias: 280 } ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment