-
Notifications
You must be signed in to change notification settings - Fork 7
/
homework.html
258 lines (254 loc) · 12.6 KB
/
homework.html
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<!DOCTYPE html>
<html>
<head>
<title>Homework</title>
<style>
body {
background: rgb(185, 215, 185);
color: rgb(45, 45, 45);
padding: 10px;
font-family: arial;
}
header {
font-size: 1.5em;
font-weight: bold;
}
#all-contents {
max-width: 800px;
margin: auto;
}
/* navigation menu */
nav {
background: rgb(150, 16, 220);
margin: 0 auto;
display: flex;
padding: 10px;
margin-bottom: 20px;
}
nav header {
display: flex;
align-items: center;
color: rgb(255, 255, 255);
flex: 1;
}
nav ul {
list-style-image: none;
}
nav li {
display: inline-block;
padding: 0 10px;
}
nav a {
text-decoration: none;
color: #fff;
}
/* main container area beneath menu */
main {
background: rgb(245, 238, 219);
display: flex;
}
.sidebar {
margin-right: 25px;
padding: 10px;
}
.sidebar img {
width: 200px;
}
.content {
flex: 1;
padding: 15px;
}
.interests header {
font-size: 1.25em;
}
</style>
</head>
<body>
<div id="all-contents">
<nav>
<header>Bootcamp: Lima</header>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="helpfulLinks.html">Helpful Links</a></li>
<li><a href="homework.html">Homework</a></li>
<li><a href="commandList.html">Command List</a></li>
</ul>
</nav>
<main>
<div class="sidebar">
</div>
<div class="content">
<h1>Homework</h1>
<h2>Week 5</h2>
<h3>Due Tuesday Before Class</h3>
<ul>
<li>Code: Continue working on Reactivex.io</li>
<li>EQJS: Chapter 5</li>
<li>Quiz: Pure Functions</li>
<li>Read: Scopes And Closures: Advanced</li>
<li>Work on Studies and Lodown revisions</li>
</ul>
<h3>Due Wednesday Before Class</h3>
<ul>
<li>Code: Continue working on Reactivex.io</li>
<li>EQJS: Chapter 5</li>
<li>Quiz: Scopes & Closures, BC - Closures</li>
<li>Code Quiz: countOccurrences</li>
<li>Read: The Keyword `this`: Advanced</li>
<li>Work on Studies and Lodown revisions</li>
</ul>
<h3>Due Thursday Before Class</h3>
<ul>
<li>Code: Continue working on Reactivex.io</li>
<li>EQJS: Chapter 5</li>
<li>Quiz: Constructor Functions</li>
<li>Code Quiz: Pizza Class</li>
<li>**Note** To take the test all lights need to be GREENLIT except Reactivex.io, EQJS, and the "this" Quiz</li>
<li>Prepare for tomorrow's checkpoint</li>
</ul>
<h3>Due Monday Before Class</h3>
<ul>
<li>Code: Reactivex.io *Submit picture via Slack*</li>
<li>EQJS: GREENLIT</li>
<li>Quiz: BC - The Keyword "this"</li>
<li>**Note** EVERYTHING should be GREENLIT</li>
</ul>
<h2>Week 4</h2>
<h3>Due Tuesday Before Class</h3>
<ul>
<li>Code: Continue working on Recursion Pratice</li>
<li>Code Quiz: Longest Word, First Factorial, Change Letters</li>
<li>EQJS: Continue working on Chapter 4</li>
<li>Prepare for tomorrow's presentations</li>
<li>Work on Studies and Lodown revisions</li>
</ul>
<h3>Due Wednesday Before Class</h3>
<ul>
<li>Code: Continue working on Recursion Pratice</li>
<li>Code Quiz: capitalizeFirstMap, countOccurrencesFilter, mapObject, Capitalize All, Alphabetical</li>
<li>EQJS: Continue working on Chapter 4</li>
<li>Revisions: Week 3 Checkpoint Revisions</li>
<li>Work on Studies and Lodown revisions</li>
</ul>
<h3>Due Thursday Before Class</h3>
<ul>
<li>Code: Continue working on Recursion Pratice</li>
<li>Code Quiz: Time Converter, Triangular, Surrounded Symbols</li>
<li>EQJS: Continue working on Chapter 4</li>
<li>Prepare for tomorrow's checkpoint</li>
<li>Work on Studies and Lodown revisions</li>
</ul>
<h3>Due Monday Before Class</h3>
<ul>
<li>Code: Recursion Pratice GREENLIT</li>
<li>Code Quiz: reduceStairs, mapObjectReduce, Greater Than, Is Balanced, Reverse String</li>
<li>EQJS: Chapter 4 Completed</li>
<li>**Note** All Available Code Quizzes should be GREENLIT</li>
<li>Prepare for Monday's checkpoint</li>
<li>Work on Studies and Lodown revisions</li>
</ul>
<h2>Week 3</h2>
<h3>Due Tuesday Before Class</h3>
<ul>
<li>Code: Underpants up to _.each</li>
<li>Lodown: _.identity - _.each </li>
<li>Prepare for tomorrow's presentations</li>
<li>Work on Studies revisions</li>
</ul>
<h3>Due Wednesday Before Class</h3>
<ul>
<li>Code: Underpants up to _.pluck</li>
<li>Lodown: _.unique - _.pluck </li>
<li>Revisions: Week 2 Checkpoint Revisions</li>
<li>Work on Studies revisions</li>
</ul>
<h3>Due Thursday Before Class</h3>
<ul>
<li>Code: Underpants GREENLIT</li>
<li>Lodown: COMPLETED</li>
<li>Work on Studies revisions</li>
</ul>
<h3>Due Monday Before Class</h3>
<ul>
<li>Code: Let's Get Functional GREENLIT</li>
<li>Checkpoint: Prepare for Monday's checkpoint</li>
<li>Presentation: Prepare for Tuesday's Presentation</li>
<li>Work on Studies revisions</li>
</ul>
<h2>Week 2</h2>
<h3>Due Tuesday Before Class</h3>
<ul>
<li>Code: Matchy data.js </li>
<li>Read: Scope</li>
<li>Quiz: Scope, Variables, constants, and lets</li>
<li>Studies Part 2: scope.js</li>
<li>Prepare for tomorrow's presentations</li>
</ul>
<h3>Due Wednesday Before Class</h3>
<ul>
<li>Code: Matchy (continue working with your partner)</li>
<li>Read: Functions, Functions as First Class Objects</li>
<li>Quiz: Hoisting Advanced, Functions</li>
<li>Studies Part 2: hoisting.js</li>
<li>Prepare for tomorrow's presentations</li>
<li>Revisions: Week 1 Checkpoint Revisions</li>
</ul>
<h3>Due Thursday Before Class</h3>
<ul>
<li>Code: Function Master: test-master.js, Prompts 1 - 6 of Function Master</li>
<li>Read: Closures, Understanding Closures with Ease, EQJS Chapters 1 & 2</li>
<li>EQJS: Chapter 2 exercises</li>
</ul>
<h3>Due Friday at 11:59pm</h3>
<ul>
<li>Code: Matchy GREENLIT</li>
</ul>
<h3>Due Monday Before Class</h3>
<ul>
<li>Code: Function Master GREENLIT</li>
<li>EQJS: Chapter 3 exercises</li>
<li>Read: Type</li>
<li>Quiz: Type, Values vs Reference</li>
<li>Checkpoint: Prepare for Monday's checkpoint</li>
<li>Prepare for Tuesday's Presentation</li>
</ul>
<h2>Week 1</h2>
<h3>Due Monday Before Class</h3>
<ul>
<li>Code: First Website and Portfolio Projects GREENLIT</li>
</ul>
<h3>Due Tuesday Before Class</h3>
<ul>
<li>Code: Scratch Pad Day 1</li>
<li>Read: Statements & Expressions, The console & Logging, Constructs & Collections</li>
<li>Quizzes: Statements & Expressions, The console & Logging</li>
<li>Work on Studies project</li>
</ul>
<h3>Due Wednesday Before Class</h3>
<ul>
<li>Code: Scratch Pad Day 2</li>
<li>Read: Operators</li>
<li>Quizzes: Conditional Statements, Collections, Loops</li>
<li>Work on Studies project</li>
</ul>
<h3>Due Thursday Before Class</h3>
<ul>
<li>Code: Scratch Pad Day 3</li>
<li>Read: DataTypes</li>
<li>Quiz: Operators, DataTypes </li>
<li>Work on Studies project</li>
</ul>
<h3>Due Monday Before Class</h3>
<ul>
<li>Code: Scratch Pad GREENLIT</li>
<li>Code: Studies project COMPLETED</li>
<li>Read: Holding Things in Memory, Variables, Constants, Lets</li>
<li>Quiz: Attempt* Variables, constants, and lets</li>
<li>Checkpoint: Prepare for Monday's Checkpoint</li>
<li>Presentation: Prepare for Tuesday’s presentation</li>
</ul>
</div>
</main>
</div>
</body>
</html>