-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1-object.js
57 lines (42 loc) · 1001 Bytes
/
1-object.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
// Object factory
// To hide creation of keys
const user1 = {
type: 'user',
name: 'Name',
group: 'Group1',
email: 'Email1'
}
const user2 = {
type: 'user',
name: 'Name',
group: 'Group1',
email: 'Email1'
}
// function userFactory (name, group, email){
// return { type: 'user', name, group, email };
// }
const userFactory = (name, group, email) => ({ type: 'user', name, group, email });
const user = userFactory('User1', 'Group1', 'Email1')
console.table(user)
console.log(JSON.stringify(user, null, 2))
// ################################################################ //
const createUser = ({ firstName, lastName, email }) => ({
firstName,
lastName,
email,
fullName() {
return `${this.firstName} ${this.lastName}`;
}
});
const user1 = createUser({
firstName: "John",
lastName: "Doe",
email: "[email protected]"
});
const user2 = createUser({
firstName: "Jane",
lastName: "Doe",
email: "[email protected]"
});
console.log(user1);
console.log(user2);