Skip to content

Instantly share code, notes, and snippets.

@SaschaHeyer
Created February 28, 2018 13:01
Show Gist options
  • Select an option

  • Save SaschaHeyer/3f12f70a1f82f04bc4e6fa6649aaf627 to your computer and use it in GitHub Desktop.

Select an option

Save SaschaHeyer/3f12f70a1f82f04bc4e6fa6649aaf627 to your computer and use it in GitHub Desktop.
destructuring
function writeBeer({ name, type }){
console.log(name)
console.log(type)
}
let beer = {
name: 'Bitburger',
type: 'Pils'
}
writeBeer(beer);
// output: Bitburger
// output: Pils
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment