ES6入門 —— Class和Module

1、Class ES6引入了Class(類)這個概念,做爲對象的模板。經過class關鍵字,能夠定義類。javascript // 定義類 class Point() { constructor(x, y) { this.x = x; this.y = y; } toString() {
相關文章
相關標籤/搜索