Skip to content

Instantly share code, notes, and snippets.

@emrekasg
Created April 2, 2020 16:10
Show Gist options
  • Save emrekasg/fbe8a959ed6f28d67c8ddfdbe19c6e69 to your computer and use it in GitHub Desktop.
Save emrekasg/fbe8a959ed6f28d67c8ddfdbe19c6e69 to your computer and use it in GitHub Desktop.
Object Destructuing for Medium
var treatment = {stayathome:"get rid of the corona",and:"don't go out"}
// Object Destructuring
var {stayathome,and} = treatment
// Normal
var stayathome = treatment.stayathome
var and = treatment.and
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment