Skip to content

Instantly share code, notes, and snippets.

@yeonwooz
Created March 4, 2022 02:28
Show Gist options
  • Save yeonwooz/2c47a20eea5fe26e17cfe677b4062dfe to your computer and use it in GitHub Desktop.
Save yeonwooz/2c47a20eea5fe26e17cfe677b4062dfe to your computer and use it in GitHub Desktop.
shallow copy
const whiteShirt = {
name: 'whiteShirt',
size: 'm',
price: '100,000',
discountedPrice: '50,000',
}
const pants = whiteShirt
pants.name = 'pants'
console.log(whiteShirt.name) // 'pants'
console.log(pants.name) // 'pants'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment