You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ case, it is recommended to take a look to the following topics:
111
111
112
112
Each day of the first week you will have a small exercise at the end of the day.
113
113
You must code the exercise inside the corresponding folder, example
114
-
src/week1/day1/index.js will contain the code for the exercise of the Day 1.
114
+
`src/week1/day1/index.js` will contain the code for the exercise of the Day 1.
115
115
116
116
The second week introduces you to TypeScript and Angular. JavaScript is an easy typed language, that means
117
117
as a developer you have total control over the whole structure of the code. Sometimes that's
@@ -191,7 +191,7 @@ In this lesson you will learn all about the Prototype, Inheritance, Getters, Set
191
191
192
192
### Exercise:
193
193
194
-
**Notes:**
194
+
Look into [`src/week1/day1/index.html`](src/week1/day1/index.html) in there there's an `Animal` class with a talk method. Follow the instructions.
195
195
196
196
### ~~Not So~~ Optional Reading
197
197
Since ES6 went out we do have a _Class like_ sintax, **HOWEVER** that's [Syntactic Sugar](https://en.wikipedia.org/wiki/Syntactic_sugar).
@@ -214,12 +214,11 @@ Read up and catch 'em all
214
214
-[Errors and debugging](http://eloquentjavascript.net/08_error.html)
215
215
216
216
### Exercise:
217
-
218
-
**Notes:**
217
+
Look into [`src/week1/day2`](src/week1/day2) in there there're some `index` files, poke around and follow the instructions.
219
218
220
219
## Day 3: The browser, where the _magic_ happens
221
220
222
-
So, you have a text file called _whatever.js_, you have ~200 lines in there (or you should, codebases of ~ 1k lines are made by horrible people). You double click the file, an browser opens and
221
+
So, you have a text file called _whatever.js_, you have ~200 lines in there (or you should, codebases of ~ 1k lines are made by horrible people). You add it to an `index.html` file, double click that file, a browser opens and
223
222
224
223

225
224
@@ -251,6 +250,7 @@ Users communicate with the application via `forms`, those are fill up sections w
251
250
252
251
253
252
### Exercise:
253
+
Look into [`src/week1/day3`](src/week1/day3) in there there're some `index` files, poke around and follow the instructions.
254
254
255
255
## Day 4 and 5: require('Node.js')
256
256
So, at this point you pretty much are up to speed with Js. But Js does not only run on a
0 commit comments