-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSingleton.html
57 lines (52 loc) · 1.33 KB
/
Singleton.html
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
<!DOCTYPE html>
<html>
<head> </head>
<body>
<script>
class Item {
constructor(id, nome) {
this.id = id;
this.nome = nome;
}
}
class Singleton {
constructor() {
if (!Singleton.instance) {
this.id = "Single";
this.data = [];
Singleton.instance = this;
}
return Singleton.instance;
}
add(item) {
this.data.push(item);
}
get(id) {
return this.data.find(d => d.id === id);
}
findItem(nome) {
return this.data.find(d => d.nome.includes(nome));
}
}
const instance = new Singleton();
const instance2 = new Singleton();
Object.freeze(instance);
var numItems = 1000;
for (let i = 1; i <= numItems; i++) {
item = new Item(i, makeid());
instance.add(item);
}
console.log(instance.findItem("f1"));
console.log(instance);
console.log(instance2);
function makeid() {
let text = "";
let possible =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for (let i = 0; i < 16; i++)
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
</script>
</body>
</html>