Momentum logo
Team 12 Classroom

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.

  1. Hello World (required)
  2. TwoFer (required)
  3. Raindrops (required)
  4. Hamming
  5. ResistorColor
  6. 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

๐Ÿ”– 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 of let or const.

๐Ÿฆ‰ Code & Notes

Back to home