Skip to content

Instantly share code, notes, and snippets.

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