forked from LaunchCodeEducation/javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
88 lines (87 loc) · 2.26 KB
/
script.js
File metadata and controls
88 lines (87 loc) · 2.26 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
window.addEventListener("load", function() {
fetch("https://handlers.education.launchcode.org/static/astronauts.json").then( function(response) {
response.json().then( function(json) {
const div = document.getElementById("container");
});
});
});
[
{
"id": 1,
"active": false,
"firstName": "Mae",
"lastName": "Jemison",
"skills": [
"Physician", "Chemical Engineer"
],
"hoursInSpace": 190,
"picture": "mae-jemison.jpg"
},
{
"id": 2,
"active": false,
"firstName": "Frederick",
"lastName": "Gregory",
"skills": [
"Information Systems", "Shuttle Pilot", "Fighter Pilot", "Helicopter Pilot", "Colonel USAF"
],
"hoursInSpace": 455,
"picture": "frederick-gregory.jpg"
},
{
"id": 3,
"active": false,
"firstName": "Ellen",
"lastName": "Ochoa",
"skills": [
"Physics", "Electrical Engineer"
],
"hoursInSpace": 979,
"picture": "ellen-ochoa.jpg"
},
{
"id": 4,
"active": false,
"firstName": "Guion",
"lastName": "Bluford",
"skills": [
"Aerospace Engineer", "Philosophy", "Physics", "Colonel USAF",
"Fighter Pilot"
],
"hoursInSpace": 686,
"picture": "guion-bluford.jpg"
},
{
"id": 5,
"active": false,
"firstName": "Sally",
"lastName": "Ride",
"skills": [
"Physicist", "Astrophysics"
],
"hoursInSpace": 343,
"picture": "sally-ride.jpg"
},
{
"id": 6,
"active": true,
"firstName": "Kjell",
"lastName": "Lindgren",
"skills": [
"Physician", "Surgeon", "Emergency Medicine"
],
"hoursInSpace": 15,
"picture": "kjell-lindgren.jpg"
},
{
"id": 7,
"active": true,
"firstName": "Jeanette",
"lastName": "Epps",
"skills": [
"Physicist", "Philosophy", "Aerospace Engineer"
],
"hoursInSpace": 0,
"picture": "jeanette-epps.jpg"
}
]