Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save olddustysocksunderthecouch/c7024e9d484d1e78e62b4080b58b2b33 to your computer and use it in GitHub Desktop.
Save olddustysocksunderthecouch/c7024e9d484d1e78e62b4080b58b2b33 to your computer and use it in GitHub Desktop.
const myObj = {
name: ‘Douglas Adams’,
age: 42
}
const {name} = myObj;
console.log(name); // logs: ‘Douglas Adams’
console.log(age);// logs: undefined
console.log(myObj);// logs: {name:’Douglas Adams’, age:42}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment