-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomework-20.js
150 lines (93 loc) · 3.58 KB
/
homework-20.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/* . Створити клас Людина
властивості
імʼя
вік
методи
конструктор, який приймає два параметри: імʼя та вік
метод, який виводить у консоль інформацію про людину
2. клас Автомобіль
властивості
марка, модель, рік виписку, номерний знак (або на Ваш розсуд)
власник
методи
конструктор, який приймає чотитри параметри (тобто, всі окрім власника): марка, модель, рік виписку, номерний знак
присвоїти власника - метод повинен приймати екземпляр класу Людина, та зберігати екземпляр класу Людина у відповідному полі, якщо вік більше 18, інакше виводити у консоль відповідне повідомлення
метод, який виводить у консоль інформацію про автомобіль та викликає метод виводу інформації класу Людина для виведення інформації про власника
в якості демонстраціїї створити:
декілька екземплярів класу Людина
декілька екземплярів класу Автомобіль
присвоїти власників автомобілям */
class Person {
name;
age;
constructor(name, age) {
this.name = name;
this.age = age;
}
getHumanInfo() {
console.log(`${this.name} is ${this.age} years old`);
}
}
const valya = new Person('Valya', 39);
valya.getHumanInfo();
const kate = new Person('Kate', 27);
kate.getHumanInfo();
const petya = new Person('Petya', 54);
petya.getHumanInfo();
const masha = new Person('Masha', 17);
masha.getHumanInfo();
console.log('-----------------');
class Car {
brand;
model;
year;
color;
fuel;
owner;
constructor(brand, model, year, color, fuel) {
this.brand = brand;
this.model = model;
this.year = year;
this.color = color;
this.fuel = fuel;
}
addOwner(person) {
if (Number(person.age) < 18) {
this.owner = '---';
console.warn(person.name, ': can not be the owner of a car!');
return;
}
this.owner = person;
}
getInfoCar () {
console.log(`
Car brand: ${this.brand},
model: '${this.model}',
production year: '${this.year}',
color: '${this.color}',
fuel: '${this.fuel}'`);
if (Number(this.owner.age) > 18) {
console.log('owner:');
this.owner.getHumanInfo();
return;
}
console.warn('no owner');
}
}
const mazda = new Car('mazda', '6', '2003', 'greey', 'diesel');
mazda.addOwner(kate);
mazda.getInfoCar();
console.log('\n\n');
const toyota = new Car('toyota', 'yaris', '2010', 'red', 'petrol');
toyota.addOwner(masha);
toyota.getInfoCar();
console.warn(toyota);
console.log('\n\n');
const honda = new Car('honda', 'civic', '2014', 'black', 'gas');
honda.addOwner(petya);
honda.getInfoCar();
console.log('\n\n');
const bmw = new Car('bmw', 'm-5', '2020', 'blue', 'diesel');
bmw.addOwner(valya);
bmw.getInfoCar();
// (Number(this.owner.age) > 18) ? this.owner.getHumanInfo() : console.log('owner: -----');