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
The point of these assignments is to take your knowledge of JavaScript and start putting into practice the principles learned throughout JavaScript I.
Assignment Description
Fork/Clone this repository.
Complete all the exercises as described inside each assignment file.
Use console.log() statements to check to see if your code does what it is supposed to do.
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 REPL like JSBin, REPL.it, JSFiddle or even your Chrome developer console.
Once you finish the exercises in a file, commit your code, and push it to your fork.
Once your assignments are logging out the expected output, and you've
Callbacks
In this file you'll be receiving a lot of training on how to use callbacks to pass around data.
Write out each function using the ES5function keyword syntax.
Remember that a callback function is simply a function that is being passed around to other functions.
Stretch Problem After you're done with all of the functions, go ahead and re-factor all of them to use ES6Arrow Functions