-
Notifications
You must be signed in to change notification settings - Fork 183
/
15 - Day 5 - Inheritance.js
42 lines (35 loc) · 1007 Bytes
/
15 - Day 5 - 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
40
41
42
// ========================
// Information
// ========================
// Direct Link: https://www.hackerrank.com/challenges/js10-inheritance/problem
// Difficulty: Easy
// Max Score: 15
// Language: JavaScript (Node.js)
// ========================
// Solution
// ========================
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, 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);
}