You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,24 +11,28 @@
11
11
12
12
**Note:**You could also run `node /assignments/<fileName>` and see what prints in your terminal.
13
13
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.
15
15
16
16
### Objects
17
+
17
18
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.
18
19
19
20
* Read the instructions found within the file carefully to finish the challenges.
20
21
* Complete each challenge presented before moving on to Arrays.
21
22
22
23
### Arrays
24
+
23
25
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.
24
26
25
27
* Utilize the the array `inventory` to complete your challenges
26
28
* You are not permitted to use map, reduce, or filter to solve these problems. Only use a basic for loop.
27
29
* Complete each challenge presented before moving on to stretch.
28
30
29
-
### Stretch
31
+
### Arrow Function Syntax
30
32
31
33
*[ ] 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.
32
34
35
+
### Stretch
36
+
33
37
* Move on to tomorrow's content and start studying callbacks, write a few of your own to get the hang of it.
34
38
* 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