Created
October 22, 2019 05:16
-
-
Save MidasXIV/f8e363552514eb117b27550db98f8424 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 pokemon = { | |
"name": "Pikachu", | |
"id": 25, | |
"type": "electric", | |
}; | |
let { type, name, moves } = pokemon; | |
console.log(`Name :: ${name}`); | |
console.log(`Type :: ${type}`); | |
console.log(`moves :: ${moves}`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment