-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBridge.js
46 lines (38 loc) · 819 Bytes
/
Bridge.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
// Bridge is a structural pattern.
// Мост - структурный шаблон проектирования.
class Model {
constructor(color) {
this.color = color;
}
}
class Color {
constructor(type) {
this.type = type;
}
get() {
return this.type;
}
}
class SilverColor extends Color {
constructor() {
super('Silver');
}
}
class BlackColor extends Color {
constructor() {
super('Black');
}
}
class MercedesBenz extends Model {
constructor(color) {
super(color);
this.model = 'Mercedes-Benz';
}
info() {
console.log(`Модель: ${this.model}, Цвет: ${this.color.get()}`);
}
}
const BlackMercedes = new MercedesBenz(new BlackColor());
const SilverMercedes = new MercedesBenz(new SilverColor());
BlackMercedes.info();
SilverMercedes.info();