Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 1, 2021 15:33
Show Gist options
  • Save shahab570/2450f83a1a1c97927f6ac636ae30cbd9 to your computer and use it in GitHub Desktop.
Save shahab570/2450f83a1a1c97927f6ac636ae30cbd9 to your computer and use it in GitHub Desktop.
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