最佳答案
get
在 ES6课程中意味着什么?如何引用这个函数?我该怎么用?
class Polygon {
constructor(height, width) {
this.height = height;
this.width = width;
}
get area() {
return this.calcArea()
}
calcArea() {
return this.height * this.width;
}
}