Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 14cf9ce

Browse files
authored
Merge pull request HackYourFuture#1 from mkruijt/master
moved weeks 4,5,6 from the JavaScript repo into JavaScript2
2 parents a6d3e68 + 9d68728 commit 14cf9ce

File tree

12 files changed

+25
-27
lines changed

12 files changed

+25
-27
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
>Please help us improve and share your feedback! If you find better tutorials or links, please share them by opening a Pull Request.
22
3-
# JavaScript2
3+
# HackYourFuture JavaScript 2
44

55
Here you can find course content and homework for the JavaScript2 module
66

77
|Week|Topic|Read|Homework|
88
|----|-----|----|--------|
9-
|1.|• Capturing user input <br>• Events<br>• [Basic DOM manipulations (img src, innerHTML)](fundamentals/DOM_manipulation.md)<br>• Code debugging using the browser <br>• [Code commenting](fundamentals/code_commenting.md)<br>• Structuring code files<br>• [Code formatting](fundamentals/code_formatting.md) |[Reading Week 4](/Week1/README.md)|[Homework Week 4](/Week1/MAKEME.md)|
10-
|2.|• Functions + JSON/Arrays<br>• [Array Manipulations](fundamentals/array_manipulation.md)<br>• JSON<br>• [Map and filter](fundamentals/map_filter.md)<br>• Arrow functions |[Reading Week 5](/Week2/README.md)|[Homework Week 5](/Week2/MAKEME.md)|
11-
|3.|[Closures](fundamentals/scope_closures_this.md) <br>• Callbacks|[Reading Week 6](/Week3/README.md)|[Homework Week 6](/Week3/MAKEME.md)|
9+
|1.|• Capturing user input <br>• Events<br>• [Basic DOM manipulations (img src, innerHTML)](../../../fundamentals/blob/master/fundamentals/DOM_manipulation.md)<br>• Code debugging using the browser <br>• [Code commenting](../../../fundamentals/blob/master/fundamentals/code_commenting.md)<br>• Structuring code files<br>• [Code formatting](../../../fundamentals/blob/master/fundamentals/code_formatting.md) |[Reading Week 1](/Week1/README.md)|[Homework Week 1](/Week1/MAKEME.md)|
10+
|2.|• Functions + JSON/Arrays<br>• [Array Manipulations](../../../fundamentals/blob/master/fundamentals/array_manipulation.md)<br>• JSON<br>• [Map and filter](../../../fundamentals/blob/master/fundamentals/map_filter.md)<br>• Arrow functions |[Reading Week 2](/Week2/README.md)|[Homework Week 2](/Week2/MAKEME.md)|
11+
|3.|[Closures](../../../fundamentals/blob/master/fundamentals/scope_closures_this.md) <br>• Callbacks|[Reading Week 3](/Week3/README.md)|[Homework Week 3](/Week3/MAKEME.md)|
1212

1313
__Kind note:__
1414

1515
We expect you to __always__ come prepared to the class on Sunday.
1616

1717
### Overall
18-
A good understanding of all the above mentioned topics. Want to check your Knowledge? Go through the [JavaScript Fundamentals README](fundamentals/README.md) and research/ ask for help (Slack!) with the concepts that are not entirely clear.
19-
18+
A good understanding of all the above mentioned topics. Want to check your Knowledge? Go through the [JavaScript Fundamentals README](../../../fundamentals/blob/master/fundamentals/README.md) and research/ ask for help (Slack!) with the concepts that are not entirely clear.
2019

20+
*The HackYourFuture curriculum is subject to CC BY copyright. This means you can freely use our materials, but just make sure to give us credit for it :)*

Week4/MAKEME.md renamed to Week1/MAKEME.md

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Topics discussed in class this week:
1111
• State
1212
```
1313

14-
>[Here](/Week3/README.md) you find the readings you have to complete before the fourth lecture.
14+
>[Here](/Week1/README.md) you find the readings you have to complete before the fourth lecture.
1515
1616
## Step 0: Make a small dance
1717
Give yourself (or your neighbor) a little tap on the shoulder, you've made it to JS2! :muscle:
@@ -20,29 +20,29 @@ Give yourself (or your neighbor) a little tap on the shoulder, you've made it to
2020

2121
Week 2
2222

23-
- [Variables (var, let, const)](../fundamentals/variables.md)
24-
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](../fundamentals/values.md)
25-
- [Operators](../fundamentals/operators.md)
26-
- [Naming conventions](../fundamentals/naming_conventions.md)
23+
- [Variables (var, let, const)](./../../../../fundamentals/blob/master/fundamentals/variables.md)
24+
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md)
25+
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
26+
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
2727

2828
Week 3
2929

30-
- [Advanced data types (objects)](../fundamentals/objects.md)
31-
- [Conditional execution](../fundamentals/conditional_execution.md) <br>
32-
- [Statements vs Expressions](../fundamentals/statements_expressions.md)<br>
33-
- [Loops (for/while)](../fundamentals/loops.md)
34-
- [Functions](../fundamentals/functions.md)
35-
- [Scope](../fundamentals/scope.md)
30+
- [Advanced data types (objects)](./../../../../fundamentals/blob/master/fundamentals/objects.md)
31+
- [Conditional execution](./../../../../fundamentals/blob/master/fundamentals/conditional_execution.md) <br>
32+
- [Statements vs Expressions](./../../../../fundamentals/blob/master/fundamentals/statements_expressions.md)<br>
33+
- [Loops (for/while)](./../../../../fundamentals/blob/master/fundamentals/loops.md)
34+
- [Functions](./../../../../fundamentals/blob/master/fundamentals/functions.md)
35+
- [Scope](./../../../../fundamentals/blob/master/fundamentals/scope.md)
3636

3737
Week 4
3838

3939
- Capturing user input
4040
- Events
41-
- [Basic DOM manipulations (img src, innerHTML)](../fundamentals/DOM_manipulation.md)
41+
- [Basic DOM manipulations (img src, innerHTML)](./../../../../fundamentals/blob/master/fundamentals/DOM_manipulation.md)
4242
- Code debugging using the browser
43-
- [Code commenting](../fundamentals/code_commenting.md)
43+
- [Code commenting](./../../../../fundamentals/blob/master/fundamentals/code_commenting.md)
4444
- Structuring code files
45-
- [Code formatting](../fundamentals/code_formatting.md)
45+
- [Code formatting](./../../../../fundamentals/blob/master/fundamentals/code_formatting.md)
4646

4747

4848
## Step 1: Implement feedback
@@ -102,7 +102,7 @@ And just for fun ... https://www.freecodecamp.com/challenges/sum-all-numbers-in-
102102

103103
_Deadline Sunday morning_
104104

105-
Go trough the reading material in the [README.md](/Week4/README.md) to prepare for your next class
105+
Go trough the reading material in the [README.md](/Week1/README.md) to prepare for your next class
106106

107107
## :boom: Bonus homework :boom:
108108
the Bonus homework for this week (for those of you want an extra challenge) do the following:
@@ -126,5 +126,3 @@ How to hand in your homework:
126126
• Your hyf-javascript2/week1 should now contain the files of your homework.
127127
• Place the link to your repository folder in Trello.
128128
```
129-
130-
:star: Additional resources and review: [here](/Week3/REVIEW.md):star:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Week5/MAKEME.md renamed to Week2/MAKEME.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Topics discussed this week:
99
• Arrow functions
1010
```
1111

12-
>[Here](/Week5/README.md) you find the readings you have to complete before the sixth lecture.
12+
>[Here](/Week2/README.md) you find the readings you have to complete before the sixth lecture.
1313
1414
## Step 1: Feedback
1515

@@ -118,7 +118,7 @@ _Deadline Saturday_
118118

119119
_Deadline Sunday morning_
120120

121-
Go trough the reading material in the [README.md](/Week5/README.md) to prepare for your next class
121+
Go trough the reading material in the [README.md](/Week2/README.md) to prepare for your next class
122122

123123

124124
```
File renamed without changes.

Week6/MAKEME.md renamed to Week3/MAKEME.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Topics discussed this week:
77
• Callbacks
88
```
99

10-
>[Here](/Week6/README.md) you find the readings you have to complete before the seventh lecture.
10+
>[Here](/Week3/README.md) you find the readings you have to complete before the seventh lecture.
1111
1212
## Step 1: Feedback
1313

@@ -154,7 +154,7 @@ __Bonus__: Write a function takes this array `['a', 'b', 'c', 'd', 'a', 'e', 'f'
154154

155155
_Deadline Sunday morning_
156156

157-
Go trough the reading material in the [README.md](/Week6/README.md) to prepare for your next class
157+
Go trough the reading material in the [README.md](/Week3/README.md) to prepare for your next class
158158

159159

160160
```
File renamed without changes.

0 commit comments

Comments
 (0)