Skip to content

Instantly share code, notes, and snippets.

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