JavaScript Reps ๐๏ธโโ๏ธ
Posted on Mar 30th, 2022
๐๏ธ Todayโs topics
- Review what we have seen so far in JS
- Scope and arrow functions
- Get your reps in! Practice and more practice
๐ฏ Project
More Loop Practice
Examples from morning class Code Academy Loops
๐ป Exercism: JavaScript Track
To get some more practice writing JavaScript, weโre going to use an awesome free online tool called Exercism.
Please sign up (you can use your GitHub account) and choose the JavaScript track.
There are two ways to use Exercism: on their site with their online editor or by installng a command line tool and working on the exercises locally. It is much easier to use the online editor, so I recommend that you do that. However, you are welcome to work locally if you want to work through the setup (their documentation is excellent). Here is an overview summarizing the two options for solving exercises.
If your exercises are locked you need to switch from Learning Mode to Practice Mode. Hereโs a short video showing you how to do that.
Complete at minimum the first three following exercises in the JavaScript track. For each exercise, make all the tests pass and follow the instructions on Exercism to submit your solution.
- Hello World (required)
- TwoFer (required)
- Raindrops (required)
- Hamming
- ResistorColor
- If you finish those, try any other learning exercise that looks interesting to you!
To submit your homework, paste your solution urls into this form.
โญ EXTRA/TMI
- Exponentially Easy Selection Sort by Vaidehi Joshi - A lot more about the selection sort algorithm if youโre curious
๐ Resources
- MDN JS Guide
- JS for Cats If you want a low-key walk through of basics that is full of ๐บ ๐ผ ๐น ๐โโฌ ๐, this is pretty helpful. Itโs older so you will see references to the
var
keyword instead oflet
orconst
.