Created
September 12, 2017 20:04
-
-
Save urielhdz/cbc130cbc2e66f3e04244caa848ec29b 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
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