Skip to content

Instantly share code, notes, and snippets.

@urielhdz
Created September 12, 2017 20:04
Show Gist options
  • Save urielhdz/cbc130cbc2e66f3e04244caa848ec29b to your computer and use it in GitHub Desktop.
Save urielhdz/cbc130cbc2e66f3e04244caa848ec29b to your computer and use it in GitHub Desktop.
let human = {
name: 'Uriel',
lastName: 'Hernandez',
age: 24
}
const {name,age} = human;
// La constante name es igual a 'Uriel'
// La constante age es igual a 24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment