-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinheritance.js
39 lines (33 loc) · 977 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
// Task
// We provide the implementation for a Rectangle class in the editor. Perform the following tasks:
/**
* Add an area method to Rectangle's prototype.
* Create a Square class that satisfies the following:
* It is a subclass of Rectangle.
* It contains a constructor and no other methods.
* It can use the Rectangle class' area method to print the area of a Square object.
* Locked code in the editor tests the class and method implementations and prints the area values to STDOUT.
*/
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;
}
}
const squareBoi = new Rectangle(10, 50);