Skip to content

Commit f6be6f8

Browse files
committed
Add same footer to every day .md file for consistency
1 parent 79c67a8 commit f6be6f8

10 files changed

+50
-0
lines changed

day_03.md

+5
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,8 @@ Let's concentrate on the [built-in](https://developer.mozilla.org/en-US/docs/Web
188188
### Why aren't we talking about `this` yet?
189189

190190
Simply because `this` is not an object! and it's not about objects, it's about bindings, context, and function calls. We'll talk about `this` on [day 7](day_07.md) after learning functions, execution context and scope which are prerequisites to understand what `this` is and how it works.
191+
192+
***
193+
[Go back to DAY 2](/day_02.md) or [Go next to DAY 4](/day_04.md)
194+
***
195+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-3)

day_04.md

+5
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,8 @@ Now open your terminal.
133133
3. Type `npm run test:watch`, this will start running your tests every time you make a change.
134134

135135
**Our task is to make ALL our DAY 4 tests pass ;)**
136+
137+
***
138+
[Go back to DAY 3](/day_03.md) or [Go next to DAY 5](/day_05.md)
139+
***
140+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-4)

day_05.md

+5
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,8 @@ Now open your terminal.
168168
3. Type `npm run test:watch`, this will start running your tests every time you make a change.
169169

170170
**Our task is to make ALL our DAY 5 tests pass ;)**
171+
172+
***
173+
[Go back to DAY 4](/day_04.md) or [Go next to DAY 6](/day_06.md)
174+
***
175+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-5)

day_06.md

+5
Original file line numberDiff line numberDiff line change
@@ -761,3 +761,8 @@ Now open your terminal.
761761
3. Type `npm run test:watch`, this will start running your tests every time you make a change.
762762

763763
**Our task is to make ALL our DAY 6 tests pass ;)**
764+
765+
***
766+
[Go back to DAY 5](/day_05.md) or [Go next to DAY 7](/day_07.md)
767+
***
768+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-6)

day_07.md

+5
Original file line numberDiff line numberDiff line change
@@ -348,3 +348,8 @@ Now open your terminal.
348348
3. Type `npm run test:watch`, this will start running your tests every time you make a change.
349349

350350
**Our task is to make ALL our DAY 7 tests pass ;)**
351+
352+
***
353+
[Go back to DAY 6](/day_06.md) or [Go next to DAY 8](/day_08.md)
354+
***
355+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-7)

day_08.md

+5
Original file line numberDiff line numberDiff line change
@@ -185,3 +185,8 @@ Now open your terminal.
185185
3. Type `npm run test:watch`, this will start running your tests every time you make a change.
186186

187187
**Our task is to make ALL our DAY 8 tests pass ;)**
188+
189+
***
190+
[Go back to DAY 7](/day_07.md) or [Go next to DAY 9](/day_09.md)
191+
***
192+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-8)

day_09.md

+5
Original file line numberDiff line numberDiff line change
@@ -263,3 +263,8 @@ Now open your terminal.
263263
3. Type `npm run test:watch`, this will start running your tests every time you make a change.
264264

265265
**Our task is to make ALL our DAY 9 tests pass ;)**
266+
267+
***
268+
[Go back to DAY 8](/day_08.md) or [Go next to DAY 10](/day_10.md)
269+
***
270+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-9)

day_10.md

+5
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,8 @@ We won't get deep into them as that's not the scope of this course, but at least
149149
- [JavaScript V8 Engine Explained](https://hackernoon.com/javascript-v8-engine-explained-3f940148d4ef) by Kadishay
150150
- [How JavaScript works: inside the V8 engine + 5 tips on how to write optimized code](https://blog.sessionstack.com/how-javascript-works-inside-the-v8-engine-5-tips-on-how-to-write-optimized-code-ac089e62b12e) by Alexander Zlatkov
151151
- [Understanding How the Chrome V8 Engine Translates JavaScript into Machine Code](https://www.freecodecamp.org/news/understanding-the-core-of-nodejs-the-powerful-chrome-v8-engine-79e7eb8af964/) by Mayank Tripathi
152+
153+
***
154+
[Go back to DAY 9](/day_09.md) or [Go next to DAY 11](/day_11.md)
155+
***
156+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-10)

day_11.md

+5
Original file line numberDiff line numberDiff line change
@@ -223,3 +223,8 @@ JavaScript became a huge ecosystem with many tools and techniques for delivering
223223
- [Brunch](https://brunch.io/)
224224
- [Yeoman](https://yeoman.io/)
225225
- [RollUp](https://rollupjs.org/guide/en/)
226+
227+
***
228+
[Go back to DAY 10](/day_10.md) or [Go next to DAY 12](/day_12.md)
229+
***
230+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-11)

day_12.md

+5
Original file line numberDiff line numberDiff line change
@@ -369,3 +369,8 @@ composeRight(
369369
- [JavaScript Function Composition, Currying, and Partial Application](https://medium.com/wdstack/javascript-function-composition-currying-and-partial-application-5a04107530ee)
370370
- [Curry or Partial Application?](https://medium.com/javascript-scene/curry-or-partial-application-8150044c78b8)
371371
- [Creating partially applied functions in Javascript](https://codeburst.io/creating-partially-applied-functions-in-javascript-1f623a56d055)
372+
373+
***
374+
[Go back to DAY 11](/day_11.md)
375+
***
376+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-12)

0 commit comments

Comments
 (0)