-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2-function.js
75 lines (61 loc) · 1.43 KB
/
2-function.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
// Function factory
// Created by enclosure
const colors = {
warning: '\x1b[1;33m',
error: '\x1b[0;31m',
info: '\x1b[1;37m'
};
const loggerFactory = (level = 'log') => {
const color = colors[level];
return s => {
const date = new Date().toISOString();
console.log(color + date + '\t' + s);
};
}
const info = loggerFactory('info');
info('Hello')
const error = loggerFactory('error');
error('Hello')
// ################################################################ //
function Developer(name)
{
this.name = name
this.type = "Developer"
}
function Tester(name)
{
this.name = name
this.type = "Tester"
}
function EmployeeFactory()
{
this.create = (name, type) => {
switch(type)
{
case 1:
return new Developer(name)
case 2:
return new Tester(name)
}
}
}
function say()
{
console.log("Hi, I am " + this.name + " and I am a " + this.type)
}
const employeeFactory = new EmployeeFactory()
const data = [
{name: "Patrick", type: 1},
{name: "John", type: 2},
{name: "Jamie", type: 1},
{name: "Taylor", type: 1},
{name: "Tim", type: 2}
]
const employees = data.map(({name, type}) => employeeFactory.create(name, type))
// employees.push(employeeFactory.create("John", 2))
// employees.push(employeeFactory.create("Jamie", 1))
// employees.push(employeeFactory.create("Taylor", 1))
// employees.push(employeeFactory.create("Tim", 2))
employees.forEach( emp => {
say.call(emp)
})