最佳答案
我正在尝试使用动态名称访问对象的属性。这可能吗?
const something = { bar: "Foobar!" };const foo = 'bar';something.foo; // The idea is to access something.bar, getting "Foobar!"