-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSingleton.js
38 lines (31 loc) · 953 Bytes
/
Singleton.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
// Singleton is a creational pattern.
// Singleton ensures that the class has only one instance.
// Одиночка - порождающий шаблон проектирования.
// Синглтон гарантирует, что класс имеет только один экземпляр.
class Singleton {
constructor() {
if (typeof Singleton.instance === 'object') {
return Singleton.instance;
}
this.count = 0;
Singleton.instance = this;
return this;
}
getCount() {
return this.count;
}
increaseCount() {
return this.count++;
}
}
const singleton1 = new Singleton();
const singleton2 = new Singleton();
const singleton3 = new Singleton();
singleton1.increaseCount();
singleton1.increaseCount();
singleton2.increaseCount();
singleton2.increaseCount();
singleton3.increaseCount();
console.log(singleton1.getCount());
console.log(singleton2.getCount());
console.log(singleton3.getCount());