forked from engindemirog/javaScriptStarterKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.js
More file actions
47 lines (47 loc) · 939 Bytes
/
users.js
File metadata and controls
47 lines (47 loc) · 939 Bytes
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
export const users = [
{
id:120,
firstName:"engin",
lastName:"karatas",
age:22,
city:"kocaeli",
salary:12500,
type:"employee"
},
{
id:121,
firstName:"ahmet",
lastName:"kaya",
city:"diyarbakır",
age:50,
salary:10000,
type:"employee"
},
{
id:122,
firstName:"ayten",
lastName:"bas",
age:"asd",
city:"artvin",
creditCartNumber:"123456",
type:"customer"
},
{
id:123,
firstName:"teyze",
lastName:"nento",
age:25,
city:"uludag",
creditCartNumber:"5522333",
type:"customer"
},
{
id:124,
firstName:"keko",
lastName:"abdulmuddalib",
age:45,
city:"muş",
creditCartNumber:"1239105",
type:"employi"
}
]