-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinheritance.js
More file actions
37 lines (30 loc) · 819 Bytes
/
Copy pathinheritance.js
File metadata and controls
37 lines (30 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
class Rectangle {
constructor(w, h) {
this.w = w;
this.h = h;
}
}
/*
* Write code that adds an 'area' method to the Rectangle class' prototype
*/
/*
* Create a Square class that inherits from Rectangle and implement its class constructor
*/
Rectangle.prototype.area = function() {
return this.w * this.h;
};
// Define Square class that extends Rectangle
class Square extends Rectangle {
constructor(s) {
super(s, s); // call Rectangle constructor with width = height = s
}
}
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);
}