Skip to content

Commit f08548c

Browse files
committed
updates tasks on README.md file
1 parent a0285bd commit f08548c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ With some basic JavaScript principles in hand, we can now expand our skills out
77

88
**Follow these steps to set up and work on your project:**
99

10-
* [ ] Create a forked copy of this project.
11-
* [ ] Add your project manager as collaborator on Github.
12-
* [ ] Clone your OWN version of the repository (Not Lambda's by mistake!).
13-
* [ ] Create a new branch: git checkout -b `<firstName-lastName>`.
14-
* [ ] Implement the project on your newly created `<firstName-lastName>` branch, committing changes regularly.
10+
* [X] Create a forked copy of this project.
11+
* [X] Add your project manager as collaborator on Github.
12+
* [X] Clone your OWN version of the repository (Not Lambda's by mistake!).
13+
* [X] Create a new branch: git checkout -b `<firstName-lastName>`.
14+
* [X] Implement the project on your newly created `<firstName-lastName>` branch, committing changes regularly.
1515
* [ ] Push commits: git push origin `<firstName-lastName>`.
1616

1717
**Follow these steps for completing your project.**
@@ -24,15 +24,15 @@ With some basic JavaScript principles in hand, we can now expand our skills out
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

27-
* [ ] 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.
27+
* [X] 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

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

3131
## Task 3: 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

35-
* [ ] Review the contents of the [array-methods.js](assignments/array-methods.js) file.
35+
* [X] Review the contents of the [array-methods.js](assignments/array-methods.js) file.
3636

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

0 commit comments

Comments
 (0)