Co get
oznacza w tej klasie ES6? Jak mam odwołać się do tej funkcji? Jak mam tego używać?
class Polygon {
constructor(height, width) {
this.height = height;
this.width = width;
}
get area() {
return this.calcArea()
}
calcArea() {
return this.height * this.width;
}
}
class
składnia, ale metody pobierające nie są niczym nowym.