Syntaxe du constructeur de classe

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