-
-
Save shahab570/2450f83a1a1c97927f6ac636ae30cbd9 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
const first ={name: "john"}; | |
const second ={age: 30}; | |
const coord ={...first,...second}; | |
console.log(coord); // {name: "john",age: 30}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment