Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 2, 2021 18:31
Show Gist options
  • Save shahab570/06b76aa0c0e4a69e14ea14e3c3885818 to your computer and use it in GitHub Desktop.
Save shahab570/06b76aa0c0e4a69e14ea14e3c3885818 to your computer and use it in GitHub Desktop.
let information = {
firstName: "John",
lastName: "Doe",
city: "New York",
};
let { firstName: f, city: c } = information;
console.log(f); //John
console.log(c); //New York
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment