-
-
Save shahab570/f84f9251d8fd42251e3616180e337714 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 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