-
-
Save storuky/ded3d5a0a56b445637e5de6c0a9d1eba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const obj1 = { | |
field: { | |
key: "foo" | |
} | |
}; | |
const obj2 = { | |
field: obj1.field | |
} | |
const obj3 = { | |
field: { | |
key: obj1.field.key | |
} | |
} | |
obj1.field.key = "bar" | |
// Какими будут obj2 и obj3 | |
// Ответ: | |
// obj2: { | |
// field: { | |
// key: "bar" | |
// } | |
// } | |
// obj3: { | |
// field: { | |
// key: "foo" | |
// } | |
// } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment