Skip to content

Commit e391f0b

Browse files
committed
fix task numbering
1 parent bdb27eb commit e391f0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ With some basic JavaScript principles in hand, we can now expand our skills out
2020
* [ ] Add your team lead as a reviewer on the pull-request
2121
* [ ] Your team lead will count the project as complete by merging the branch back into master.
2222

23-
## Task 2: Higher Order Functions and Callbacks
23+
## Task 1: Higher Order Functions and Callbacks
2424

2525
This task focuses on getting practice with higher order functions and callback functions by giving you an array of values and instructions on what to do with that array.
2626

2727
* [ ] Review the contents of the [callbacks.js](assignments/callbacks.js) file. Notice you are given an array at the top of the page. Use that array to aid you with your functions.
2828

2929
* [ ] Complete the problems provided to you but skip over stretch problems until you are complete with every other JS file first.
3030

31-
## Task 3: Array Methods
31+
## Task 2: Array Methods
3232

3333
Use `.forEach()`, `.map()`, `.filter()`, and `.reduce()` to loop over an array with 50 objects in it. The [array-methods.js](assignments/array-methods.js) file contains several challenges built around a fundraising 5K fun run event.
3434

@@ -38,7 +38,7 @@ Use `.forEach()`, `.map()`, `.filter()`, and `.reduce()` to loop over an array w
3838

3939
* [ ] Notice the last three problems are up to you to create and solve. This is an awesome opportunity for you to push your critical thinking about array methods, have fun with it.
4040

41-
## Task 4: Closures
41+
## Task 3: Closures
4242

4343
We have learned that closures allow us to access values in scope that have already been invoked (lexical scope).
4444

0 commit comments

Comments
 (0)