Que get
signifie cette classe ES6? Comment référencer cette fonction? Comment dois-je l'utiliser?
class Polygon {
constructor(height, width) {
this.height = height;
this.width = width;
}
get area() {
return this.calcArea()
}
calcArea() {
return this.height * this.width;
}
}
class
syntaxe, mais les getters ne sont pas nouveaux.