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

Skip to content

Commit c455db3

Browse files
authored
Update MAKEME.md
1 parent 6026563 commit c455db3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Week3/MAKEME.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Let's get familiar with basic Javascript concepts, with interactive exercises! C
1717

1818
> Inside of your `JavaScript2` fork, navigate to the folder `Week3`. Then to the folder `js-exercises`. In this folder you will find separate files for each exercise. Please put your code in the correct file.
1919
20-
**Exercise 1: Add six**
20+
**Exercise 1: Add nine**
2121

2222
Declare a function called `createBase`. The function takes a number as a parameter and return a closure, that adds a number to the base number argument.
2323

@@ -34,10 +34,10 @@ function createBase() {
3434
// Put here your logic...
3535
}
3636

37-
const addSix = createBase(6);
37+
const addNine = createBase(6);
3838

3939
// Put here your function calls...
40-
addSix();
40+
addNine();
4141
```
4242

4343
**Exercise 2: Take out the duplicates**

0 commit comments

Comments
 (0)