Skip to content

Commit 39a8149

Browse files
committed
addressed review comments
1 parent c50d747 commit 39a8149

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Hopefully your walk will be much easier than mine!
1010
## Table Of Contents
1111

1212

13-
##### [DAY 1](/day_01.md)
13+
### [DAY 1](/day_01.md)
1414
- [Introduction to JavaScript](/day_01.md#introduction-to-javascript)
1515
- What is JS anyway?
1616
- [What's ECMAScript?](/day_01.md#but-what-is-ecma)
@@ -27,7 +27,7 @@ Hopefully your walk will be much easier than mine!
2727
- [Run Code extension](/day_01.md#initial-workspace-setup)
2828
- Introduction to NPM
2929
***
30-
##### [DAY 2](/day_02.md)
30+
### [DAY 2](/day_02.md)
3131
- [Syntax, Grammar & Semantics](/day_02.md#syntax-grammar--semantics)
3232
- [Statements](/day_02.md#statements)
3333
- [Expressions](/day_02.md#expressions)
@@ -62,7 +62,7 @@ Hopefully your walk will be much easier than mine!
6262
- [Operators Precedence](/day_02.md#operators-precedence)
6363
- [Spread/Rest](/day_02.md#the-case-of-the---spreadrest-operator-)
6464
***
65-
##### [DAY 3](/day_03.md)
65+
### [DAY 3](/day_03.md)
6666
- Objects explained
6767
- Objects, the big picture
6868
- Syntax
@@ -73,7 +73,7 @@ Hopefully your walk will be much easier than mine!
7373
- Object built-in methods
7474
- Standard built-in objects
7575
***
76-
##### [DAY 4](/day_04.md)
76+
### [DAY 4](/day_04.md)
7777
- Indexed and Keyed Collections
7878
- Collections family
7979
- The Array Object
@@ -82,7 +82,7 @@ Hopefully your walk will be much easier than mine!
8282
- Preliminary practice
8383
- Exercises
8484
***
85-
##### [DAY 5](/day_05.md)
85+
### [DAY 5](/day_05.md)
8686
- Control Structures
8787
- General definition
8888
- Branching
@@ -94,7 +94,7 @@ Hopefully your walk will be much easier than mine!
9494
- Preliminary Practice
9595
- Exercises
9696
***
97-
##### [DAY 6](/day_06.md)
97+
### [DAY 6](/day_06.md)
9898
- Functions
9999
- General Definition
100100
- Function declaration (function statement)
@@ -129,7 +129,7 @@ Hopefully your walk will be much easier than mine!
129129
- Preliminary practice
130130
- Exercises
131131
***
132-
##### [DAY 7](/day_07.md)
132+
### [DAY 7](/day_07.md)
133133
- `this` Keyword
134134
- Introduction
135135
- Resolving `this`
@@ -144,7 +144,7 @@ Hopefully your walk will be much easier than mine!
144144
- Generators
145145
- Exercises
146146
***
147-
##### [DAY 8](/day_08.md)
147+
### [DAY 8](/day_08.md)
148148
- Classes
149149
- General definition
150150
- Syntax
@@ -158,15 +158,15 @@ Hopefully your walk will be much easier than mine!
158158
- Examples
159159
- Exercises
160160
***
161-
##### [DAY 9](/day_09.md)
161+
### [DAY 9](/day_09.md)
162162
- Asynchronous programming
163163
- Event Loop
164164
- Callback
165165
- Promises
166166
- Async/Await
167167
- Exercises
168168
***
169-
##### [DAY 10](/day_10.md)
169+
### [DAY 10](/day_10.md)
170170
- JavaScript, where does it live?
171171
- The ECMAScript Engine
172172
- What does the engine actually do?
@@ -182,7 +182,7 @@ Hopefully your walk will be much easier than mine!
182182
- TL;DR
183183
- Complementary readings
184184
***
185-
##### [DAY 11](/day_11.md)
185+
### [DAY 11](/day_11.md)
186186
- Quality and reliability
187187
- An introduction to the "reliability" and "quality" concepts
188188
- Unit / Integration / Functional testing
@@ -208,7 +208,7 @@ Hopefully your walk will be much easier than mine!
208208
- Yeoman
209209
- RollUp
210210
***
211-
##### [DAY 12](/day_12.md)
211+
### [DAY 12](/day_12.md)
212212
- Destructuring
213213
- Syntax
214214
- Examples

day_01.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ Well, by the time being we're on the [ES2019 version](https://www.ecma-internati
132132
***
133133
[Go next to DAY 2](/day_02.md)
134134
***
135-
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-1)
135+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-1)

day_02.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,4 +237,4 @@ As you can see, even though the documentation and the naming is quite awkward, i
237237
***
238238
[Go back to DAY 1](/day_01.md) or [Go next to DAY 3](/day_03.md)
239239
***
240-
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-2)
240+
[Back to main page](https://github.com/thinkb4/a-walk-in-javascript/tree/master#day-2)

0 commit comments

Comments
 (0)