Last active
May 6, 2018 17:00
-
-
Save olddustysocksunderthecouch/c7024e9d484d1e78e62b4080b58b2b33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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