-
Notifications
You must be signed in to change notification settings - Fork 22
/
Inheritance.js
39 lines (34 loc) · 891 Bytes
/
Inheritance.js
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
38
39
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 = function() {
return(this.w*this.h);
};
/*
* Create a Square class that inherits from Rectangle and implement its class constructor
*/
class Square extends Rectangle {
constructor(s) {
super(s);
this.h = s;
this.w = s;
}
};
/*
* Create a Square class that inherits from Rectangle and implement its class constructor
*/
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);
}