Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 2, 2021 18:37
Show Gist options
  • Save shahab570/b160c6e59a941ec96c22285f29747bfe to your computer and use it in GitHub Desktop.
Save shahab570/b160c6e59a941ec96c22285f29747bfe to your computer and use it in GitHub Desktop.
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