class Rectangle {

                // 补全代码

                constructor(height,width){

                    this.area=height*width

                }

            }