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