Skip to content

Instantly share code, notes, and snippets.

@zlrlo
Created November 21, 2022 01:25
Show Gist options
  • Select an option

  • Save zlrlo/890fcbb32add999211f6060267494537 to your computer and use it in GitHub Desktop.

Select an option

Save zlrlo/890fcbb32add999211f6060267494537 to your computer and use it in GitHub Desktop.
javascript trick - 객체 병합
const makeCompany = (showAddress) => {
return {
name: 'Cobalt. Inc.',
...showAddress && { address: 'Seoul' }
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment