Skip to content

Commit daba44e

Browse files
committed
added arrow functions into the assignment
1 parent 29e540d commit daba44e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,28 @@
1111

1212
**Note:**You could also run `node /assignments/<fileName>` and see what prints in your terminal.
1313

14-
* Once you finish the exercises in each file, commit your code, and push it to your fork.
14+
* Once you finish the exercises in each file, commit your code, and push it to your fork.
1515

1616
### Objects
17+
1718
To better understand objects, you really just need to write more of them. The [objects.js](assignments/objects.js) file contains several challenges centered around a theme of interns starting at a new job. The Human Resources team needs information about the new hires. Use your new found object skills answer vital questions for HR.
1819

1920
* Read the instructions found within the file carefully to finish the challenges.
2021
* Complete each challenge presented before moving on to Arrays.
2122

2223
### Arrays
24+
2325
The [arrays.js](assignments/arrays.js) assignment takes us through a large data set of used cars. You have been asked to help a used car business with some customer requests based on their inventory. Use for loops and arrays to solve their problems.
2426

2527
* Utilize the the array `inventory` to complete your challenges
2628
* You are not permitted to use map, reduce, or filter to solve these problems. Only use a basic for loop.
2729
* Complete each challenge presented before moving on to stretch.
2830

29-
### Stretch
31+
### Arrow Function Syntax
3032

3133
* [ ] Arrow Function Syntax - [Check out this awesome guide for ES6 arrow syntax](https://medium.freecodecamp.org/when-and-why-you-should-use-es6-arrow-functions-and-when-you-shouldnt-3d851d7f0b26). You will see more and more arrow functions as you progress deeper into JavaScript. Use the [stretch-function-conversion.js](assignments/stretch-function-conversion.js) file as a helper challenge to showcase some of the differences between ES5 and ES6 syntax.
3234

35+
### Stretch
36+
3337
* Move on to tomorrow's content and start studying callbacks, write a few of your own to get the hang of it.
3438
* Look at array methods like .map(), .reduce(), .filter(). use them on the data in the arrays assignment to accomplish the same things you did with the ES5 for loop.

0 commit comments

Comments
 (0)