浏览器支持Javascript中的类语法

时间:2015-12-14 00:51:50

标签: javascript google-chrome firefox browser ecmascript-6

语法下方

int s=pthread_kill(thread_arr[t], 9);

-

既不受chrome也不受firefox支持。

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版本已停止SyntaxError: Unexpected token class(…)

安装了firefox版本47.0.2526.80 m

哪个版本的浏览器44.0a2 (2015-12-12)&支持class个关键字?

2 个答案:

答案 0 :(得分:6)

  1. 您可以使用javascript到javascript编译器(如Babel)将ES6 javascript编译成ES5代码。它涵盖了大多数ES6功能。

  2. 请查看https://kangax.github.io/compat-table/es6/以获取ES6功能表以及不同浏览器对它们的支持程度。

答案 1 :(得分:3)