-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path07-sub-classes.js
49 lines (43 loc) · 939 Bytes
/
07-sub-classes.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
/**
* ******************************
* Sub Classes
* ******************************
**/
/**
* ********************
* Person class
* ********************
**/
class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
greeting() {
return `Hello there ${this.firstName} ${this.lastName}`;
}
}
/**
* ********************
* Customer sub class
* ********************
**/
class Customer extends Person {
constructor(firstName, lastName, phone, membership) {
super(firstName, lastName);
this.phone = phone;
this.membership = membership;
}
static getMembershipCost() {
return 500;
}
}
/**
* ********************
* Create object using a sub class
* ********************
**/
const john = new Customer('John', 'Doe', '555-555-5555', 'Standard');
console.log(john);
console.log(john.greeting());
console.log(Customer.getMembershipCost());