Skip to content

Instantly share code, notes, and snippets.

@woliveiras
Created January 11, 2017 16:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woliveiras/4cbc38f7f293b939e9f54b1c085ff910 to your computer and use it in GitHub Desktop.
Save woliveiras/4cbc38f7f293b939e9f54b1c085ff910 to your computer and use it in GitHub Desktop.
const myObject = {
onePassion: 'JS', crazy: true
};
const {onePassion, crazy} = myObject;
console.log(onePassion) // 'JS'
console.log(`Crazy people? ${crazy}`) // "Crazy people? true"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment