get
Bu ES6 sınıfında ne anlama geliyor? Bu işleve nasıl referansta bulunabilirim? Nasıl kullanmalıyım?
class Polygon {
constructor(height, width) {
this.height = height;
this.width = width;
}
get area() {
return this.calcArea()
}
calcArea() {
return this.height * this.width;
}
}