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