Skip to content

Instantly share code, notes, and snippets.

@Omkaragrawal
Created May 18, 2020 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Omkaragrawal/e1935a83781ddfad724913999379eebf to your computer and use it in GitHub Desktop.
Save Omkaragrawal/e1935a83781ddfad724913999379eebf to your computer and use it in GitHub Desktop.
Problematic-code.js file
class Rectangle {
constructor(w, h) {
this.w = w;
this.h = h;
}
}
/*
* Write code that adds an 'area' method to the Rectangle class' prototype
*/
Rectangle.prototype.area = () => (this.w * this.h)
/*
* Create a Square class that inherits from Rectangle and implement its class constructor
*/
class Square extends Rectangle {
constructor(side) {
super(side, side)
}
}
if (JSON.stringify(Object.getOwnPropertyNames(Square.prototype)) === JSON.stringify(['constructor'])) {
const rec = new Rectangle(3, 4);
const sqr = new Square(3);
console.log(rec.area());
console.log(sqr.area());
} else {
console.log(-1);
console.log(-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment