class Rectangle { height = 0; width; constructor(height, width) { this.height = height; this.width = width; } }