gpt4 book ai didi

javascript - 浏览器支持 Javascript 中的类语法

转载 作者:搜寻专家 更新时间:2023-11-01 05:04:20 25 4
gpt4 key购买 nike

<分区>

下面的语法,

class Polygon {
constructor(height, width) {
this.height = height;
this.width = width;
}
}


var Polygon = class {
constructor(height, width) {
this.height = height;
this.width = width;
}
};



var Polygon = class Polygon {
constructor(height, width) {
this.height = height;
this.width = width;
}
};

--

chrome 和 firefox 都不支持。

SyntaxError: 意外的 token 类(…)

已安装 chrome 版本 47.0.2526.80 m

安装的 firefox 版本 44.0a2 (2015-12-12)

哪个版本的浏览器支持 classextends 关键字?

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