Skip to content

Instantly share code, notes, and snippets.

@matheus-rossi
Created July 10, 2018 00:00
Show Gist options
  • Save matheus-rossi/19d9cfabfcf3a7d4dd4eacf00d7f7780 to your computer and use it in GitHub Desktop.
Save matheus-rossi/19d9cfabfcf3a7d4dd4eacf00d7f7780 to your computer and use it in GitHub Desktop.
// 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