Skip to content

Commit a1dd794

Browse files
committed
2 parents 6811939 + 5823457 commit a1dd794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ With some basic JavaScript principles we can now expand our skills out even furt
66
* Fork/Clone this repository.
77
* Complete all the exercises as described inside each assignment file.
88
* Use `console.log()` statements to check to see if your code does what it is supposed to do.
9-
* To test your `console` statements you can either run `node /assignments/<fileName>` and see what prints in your terminal. You can also use an online tool like `JSBin`, `REPL.it`, `JSFiddle` or even your `Chrome developer console`.
9+
* To test your `console` statements you can run `node /assignments/<fileName>` and see what prints in your terminal. You can also use an online tool like `JSBin`, `REPL.it`, `JSFiddle`, or even your `Chrome developer console`.
1010
* Once you finish the exercises in each file, commit your code, and push it to your fork.
1111

1212
### Function Conversion
1313
You will see more and more arrow functions as you progress deeper into JavaScript. Use the [function-conversion.js](assignments/function-conversion.js) file as a helper challenge to showcase some of the differences between ES5 and ES6 syntax.
1414

1515
### Array Methods
16-
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 fund rasising 5k fun run event.
16+
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 fund rasising 5k fun run event.
1717

1818
* Read the instructions found within the file carefully to finish the challenges.
1919
* The last challenge is to come up with 3 problems to solve and then build a solution for them using any of the array methods listed above.

0 commit comments

Comments
 (0)