赋值给exports 不会修改模块,必须使用module.exports module.exports = class Square { constructor(width) { this.width = width; } area() { return this.width ...
確定! 回上一頁