Skip to content

Instantly share code, notes, and snippets.

@YNSTakeru
Last active February 23, 2024 05:57
Show Gist options
  • Save YNSTakeru/397ca6662bb39f086437189faed05bef to your computer and use it in GitHub Desktop.
Save YNSTakeru/397ca6662bb39f086437189faed05bef to your computer and use it in GitHub Desktop.
ミュータブルの困ること
let myObj = {name:"太郎", score: 100}
let newMyObj = myObj
newMyObj.name = "二郎"
// myObjとnewMyObjの出力はどうなるか?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment