JavaScript的类字段声明(提案)

要定义在单击时递增的计数器窗口组件,可以使用ES2015定义以下内容: class Counter extends HTMLElement { clicked() { this.x++; window.requestAnimationFrame(this.render.bind(this)); } constructor() { super(); this.onclick = this.clicked.bind(this); this.x = 0; } connec...