class Rectangle { constructor(name, height, width) { this.name = name; this.height = height; this.width = width; } } let square = new Rectangle('square', 1, ...
確定! 回上一頁