forked from jamesqquick/javascript-array-functions-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
30 lines (30 loc) · 596 Bytes
/
data.json
File metadata and controls
30 lines (30 loc) · 596 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
[
{
"name": "Luke Skywalker",
"height": "172",
"mass": "77",
"eye_color": "blue",
"gender": "male"
},
{
"name": "Darth Vader",
"height": "202",
"mass": "136",
"eye_color": "yellow",
"gender": "male"
},
{
"name": "Leia Organa",
"height": "150",
"mass": "49",
"eye_color": "brown",
"gender": "female"
},
{
"name": "Anakin Skywalker",
"height": "188",
"mass": "84",
"eye_color": "blue",
"gender": "male"
}
]