我正在尝试这个问题。 [编辑]
答案 0 :(得分:1)
它希望您将aProperty
设置为属性名称,然后将其与变量james
一起使用以获取值。
var james = {
job: "programmer",
married: false
};
// set to the first property name of "james"
var aProperty = 'job';
// print the value of the first property of "james"
// using the variable "aProperty"
console.log(james[aProperty])