class Rectangle {
// 补全代码
constructor(h,w){
this.height=h;
this.width=w;
}
get area(){
return this.height*this.width
}
}

京公网安备 11010502036488号