gpt4 book ai didi

javascript - 代码仅在 CodeCademy 中返回错误。找不到问题

转载 作者:行者123 更新时间:2023-12-03 17:56:34 26 4
gpt4 key购买 nike

在 CodeCademy 的对象 2 简介的第 5/30 课中,他们希望您练习括号表示法。如果我在 jsfiddle 上运行此代码,它会在控制台上打印出“程序员”,但在 codecademy 上会出现错误消息“哎呀,再试一次。看起来 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]);

最佳答案

我也遇到了这个问题。而不是使用:

var aProperty = james["job"];
console.log(aProperty);

尝试:

var aProperty = ["job"];
console.log(aProperty);

关于javascript - 代码仅在 CodeCademy 中返回错误。找不到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30157429/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com