-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeveloper_Manager_Person_Advanced_ClassSyntax.js
86 lines (70 loc) · 2.22 KB
/
Developer_Manager_Person_Advanced_ClassSyntax.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* --------------------------- Person class --------------------------- */
class Person {
// your code here ...
// name = "not applicable";
age = "unknown";
constructor(name, age) {
this._name = name;
this.age = age;
}
get name() {
return this._name;
}
set name(name) {
this._name = name;
}
// Person greet method
// your code here ...
// greet() {
// if (this instanceof Developer) {
// console.log(`Hi, I'm ${this.name} and I'm ${this.age} years old.\nI know ${this.skillset.join()}.`);
// } else if (this instanceof Manager) {
// console.log(`Hi, I'm ${this.name} and I'm ${this.age} years old.\nI manage ${this.managed.map(el => el.name)}.`);
// }
// }
//above code works, but wanted to use greet in sub classes with super.greet()
greet() {
console.log(`Hi, I'm ${this.name} and I'm ${this.age} years old.`);
}
}
/* --------------------------- Manager class -------------------------- */
class Manager extends Person {
// reuse Person constructor
// your code here ...
constructor(name, age, managed) {
super(name, age);
this.managed = managed;
}
manGreet(){
super.greet();
console.log(`I manage ${this.managed.map(el => el.name)}.`);
}
}
// Manager objects should inherit all methods from Person:
/* -------------------------- Developer class ------------------------- */
class Developer extends Person {
// reuse Person constructor
// your code here ...
constructor(name, age, skillset) {
super(name, age);
this.skillset = skillset;
}
devGreet(){
super.greet();
console.log(`I know ${this.skillset.join()}.`);
}
}
// Developer objects should inherit all methods from Person:
/* ----------------------------- Create Objects ----------------------------- */
// Developer instances
let maria = new Developer('Maria Popova', 23, ['Python', 'Machine Learning']);
let pesho = new Developer('Petar Petrov', 19, ['JavaScript', 'Angular', 'React', 'Vue']);
// Manager instances
let gates = new Manager('Bill Gates', 43, [maria, pesho]);
/* ----------------------------- Use the objects ---------------------------- */
// maria.greet();
// pesho.greet();
// gates.greet();
maria.devGreet();
pesho.devGreet();
gates.manGreet();