Skip to content

Instantly share code, notes, and snippets.

@SaschaHeyer
Created February 28, 2018 12:49
Show Gist options
  • Select an option

  • Save SaschaHeyer/0e5e9c40b094000b9bbd2bb8f004c9a7 to your computer and use it in GitHub Desktop.

Select an option

Save SaschaHeyer/0e5e9c40b094000b9bbd2bb8f004c9a7 to your computer and use it in GitHub Desktop.
destructuring
const beer = {
name: 'Bitburger',
price: 1.5,
type: 'pils',
};
const { name, type } = beer;
console.log(name, type);
// output: Bitburger pils
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment