Cosa get
significa in questa classe ES6? Come faccio a fare riferimento a questa funzione? Come dovrei usarlo?
class Polygon {
constructor(height, width) {
this.height = height;
this.width = width;
}
get area() {
return this.calcArea()
}
calcArea() {
return this.height * this.width;
}
}
class
sintassi, ma i getter non sono una novità.