javascript class2016-03-07JavascriptContents1 2 3 4 5 6 7 // Declaration class Rectangle { constructor(height, width) { this.height = height; this.width = width; } } Author -LastMod 2016-03-07