Skip to content

Instantly share code, notes, and snippets.

@YNSTakeru
Last active February 23, 2024 06:09
Show Gist options
  • Save YNSTakeru/34df5333981f3553393fd73c0a186938 to your computer and use it in GitHub Desktop.
Save YNSTakeru/34df5333981f3553393fd73c0a186938 to your computer and use it in GitHub Desktop.
ミュータブルの対策
let myObj = {name:"太郎", score: 100}
let newMyObj = {...myObj}
newMyObj.name = "二郎"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment