Skip to content

Instantly share code, notes, and snippets.

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

  • Save iamgoangle/83f911d0ef8c555ca050f65c2df72774 to your computer and use it in GitHub Desktop.

Select an option

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