Codecademy上的JS练习不起作用 - 使用括号表示法访问对象数据

时间:2015-05-24 22:30:16

标签: javascript oop object javascript-objects

我正在尝试这个问题。 [编辑]

The problem

1 个答案:

答案 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])