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
51 lines (47 loc) · 862 Bytes
/
users.js
File metadata and controls
51 lines (47 loc) · 862 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
48
49
50
51
export const users = [
{
id:1,
firstName:"Eren",
lastName:"Arı",
city:"Kayseri",
age:17,
creditCardNumber:"12345",
type:"customer"
},
{
id:2,
firstName:"Elon",
lastName:"Musk",
city:"Texas",
age:50,
salary:"123456",
type:"customer"
},
{
id:3,
firstName:"Engin",
lastName:"Demiroğ",
city:"Ankara",
age:36,
salary:8000,
type:"employee"
},
{
id:4,
firstName:"Jeff",
lastName:"Bezos",
city:"Texas",
age:60,
salary:5000,
type:"employee"
},
{
id:5,
firstName:"Bill ",
lastName:"Gates",
city:"Texas",
age:65,
salary:51000,
type:"employee"
},
]