Skip to content

Instantly share code, notes, and snippets.

@iamgoangle
Created August 11, 2017 09:32
Show Gist options
  • Select an option

  • Save iamgoangle/338d25d7c4fe386126e25469369085c8 to your computer and use it in GitHub Desktop.

Select an option

Save iamgoangle/338d25d7c4fe386126e25469369085c8 to your computer and use it in GitHub Desktop.
Merge Object 2
const profile = {
name: 'Teerapong Singthong'
};
const position = {
job: 'Business Maker'
};
const summary = {...profile, job: 'Developer'};
/*
{
name: "Teerapong Singthong",
job: "Developer"
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment