单项选择题
const a = {};const b = { key: "b" };const c = { key: "c" };a[b] = 123;a[c] = 456;console.log(a[b]);()
A.123
B.456
C.undefined
D.ReferenceError
点击查看答案
相关考题
单项选择题
