// getters and setters class Square { constructor(width) { this.width = width; this.height = width; this.numOfRequestsForArea = 0; } // behaves as if it's a method get area() { this.numOfRequestsForArea++; return this.wid...