gpt4 book ai didi

javascript - 为什么我收到无法读取未定义属性的错误?

转载 作者:行者123 更新时间:2023-11-28 17:58:01 24 4
gpt4 key购买 nike

这段代码

function Test(){

}
new Test()



['width', 'height'].forEach(key => {
console.log(key);
});

给我错误

enter image description here

但这段代码不是

function Test(){

}
new Test()

var arr = ['width', 'height'];
arr.forEach(key => {
console.log(key);
});

为什么?

我正在使用 Chrome版本 53.0.2785.116(64 位)- Macbook air 2014

最佳答案

根据快照,您正在使用 Chrome,并且 Chrome 长期以来都支持 .forEach。我的猜测是,问题是由于缩小或缺少分号(;)

示例

function test(){
this.name = "test";
}

var a = new test()['width', 'height'].forEach(key => {
console.log(key);
});

关于javascript - 为什么我收到无法读取未定义属性的错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44096083/

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