Skip to content

Instantly share code, notes, and snippets.

@DiegoPinho
Created September 22, 2017 16:26
Show Gist options
  • Save DiegoPinho/a24adc116d5d439e597216e27589b281 to your computer and use it in GitHub Desktop.
Save DiegoPinho/a24adc116d5d439e597216e27589b281 to your computer and use it in GitHub Desktop.
const VideoGame = {
modelo: 'PlayStation',
fabricante: 'Sony',
midia: 'Blu-Ray',
armazenamento: '1TB',
controles: 2,
preco: 'R$ 2000.00'
}
const {modelo, fabricante} = VideoGame;
console.log(modelo, fabricante); // PlayStation Sony
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment