Created
July 10, 2018 00:00
-
-
Save matheus-rossi/19d9cfabfcf3a7d4dd4eacf00d7f7780 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ã' | |
} | |
// Extraindo Valores | |
const { descricao } = refeicao | |
console.log(descricao) // Café da Manhã |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment