Skip to content

Instantly share code, notes, and snippets.

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