class Rectangle { constructor(height, width) { this.height = height; this.width = width; } } const rect = new Rectangle(2, 3);