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

Skip to content

Commit d104abd

Browse files
authored
Removed git homework and renumbered steps
1 parent 9bac8b4 commit d104abd

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

Week3/MAKEME.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,7 @@ _Deadline Monday_
1515

1616
Give feedback on `step 2` of `week 5` to one of your fellow students (do this by creating issues in Github).
1717

18-
## ~~Step 2: Git Homework~~
19-
20-
~~_Deadline Saturday_~~
21-
22-
~~[Make these assignments](https://github.com/HackYourFuture/Git/blob/master/Lecture-3.md). For handing in homework follow the Forking workflow that is described in our lecture-3.md file of HackYourFuture’s Git repository (there is also a video that explains this).~~
23-
24-
## Step 3: Read
18+
## Step 2: Read
2519

2620
>Read:
2721
- JavaScript : [Closures](http://conceptf1.blogspot.nl/2013/11/javascript-closures.html)
@@ -32,7 +26,7 @@ Give feedback on `step 2` of `week 5` to one of your fellow students (do this by
3226
- More about [closures](https://www.reddit.com/r/learnjavascript/comments/1v6n8p/closure_explain_likei_am_in_high_school/?st=ixsp0mbe&sh=5526d150)
3327
- A VERY popular [StackOverflow article](http://stackoverflow.com/questions/111102/how-do-javascript-closures-work)
3428

35-
## Step 4: JavaScript
29+
## Step 3: JavaScript
3630

3731
_Deadline Wednesday_
3832

@@ -45,7 +39,7 @@ function doIt() {
4539
setTimeout(doIt, 5000)
4640
```
4741

48-
>f you run the above code it will wait 5 seconds and print `I am done`. Please read something about setTimeout on MDN. The first argument to the `setTimeout` call is the callback (`doIt`)
42+
>if you run the above code it will wait 5 seconds and print `I am done`. Please read something about setTimeout on MDN. The first argument to the `setTimeout` call is the callback (`doIt`)
4943
5044
1\.We saw that we can pass functions as arguments to other functions. Your task is to write a function that takes another function as an argument and runs it.
5145

@@ -133,7 +127,7 @@ console.log(y);
133127
If you are confused please run the code and then consult the Google for "javaScript pass by value pass by reference"
134128

135129

136-
## Step 5: Scope and Closures
130+
## Step 4: Scope and Closures
137131

138132
_Deadline Saturday_
139133

@@ -150,7 +144,7 @@ addSix(21); // returns 27
150144
__Bonus__: Write a function takes this array `['a', 'b', 'c', 'd', 'a', 'e', 'f', 'c']` and returns an array which only has unique values in it (so it removes the duplicate ones). Make it a 'smart' algorithm that could do it for every array (only strings/number). Try to make it as fast as possible!
151145

152146

153-
## Step 6: Read before next lecture
147+
## Step 5: Read before next lecture
154148

155149
_Deadline Sunday morning_
156150

0 commit comments

Comments
 (0)