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) · 937 Bytes
/
users.js
File metadata and controls
47 lines (47 loc) · 937 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: 1,
firstName: 'John',
lastName: 'Doe',
city:"San Francisco",
age: 21,
creditCardNumber: "1234 5432 2345",
type: 'customer'
},
{
id: 2,
firstName: 'Rıdvan',
lastName: 'Bozkır',
city: 'Ankara',
age: 21,
creditCardNumber: "2211 5332 2345",
type: 'customer'
},
{
id: 3,
firstName: 'Cansu',
lastName: 'Doe',
city: 'İstanbul',
age: 54,
salary: 9875,
type: 'employee'
},
{
id: 4,
firstName: 'Tuğçe',
lastName: 'Bozkır',
city: 'Bursa',
age: 30,
salary: 17000,
type: 'employee'
},
{
id: 5,
firstName: 'Eren',
lastName: 'Ari',
city: 'Diyarbakır',
age: 44,
salary: 15000,
type: 'employee'
}
]