类中函数前面的“get”关键字是什么?
2022-08-30 03:05:10
这个ES6类意味着什么?如何引用此函数?我应该如何使用它?get
class Polygon {
constructor(height, width) {
this.height = height;
this.width = width;
}
get area() {
return this.calcArea()
}
calcArea() {
return this.height * this.width;
}
}