-
-
Save shahab570/b160c6e59a941ec96c22285f29747bfe to your computer and use it in GitHub Desktop.
This file contains 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 USA = { | |
city: { | |
chicago: "Beautiful", | |
Houston: "Charming", | |
}, | |
press: ["CNN", "Fox"], | |
president: "Donald Trump", | |
}; | |
let { | |
city: { chicago, Houston }, | |
press: [press1, press2], | |
president, | |
} = USA; | |
console.log(Houston); //Charming | |
console.log(press1); //CNN | |
console.log(president); //Donald Trump |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment