You are viewing a single comment's thread. Return to all comments →
Rectangle.prototype.area = function () { return this.w * this.h; }; class Square extends Rectangle { constructor(side) { super(side,side); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 5: Inheritance
You are viewing a single comment's thread. Return to all comments →