Momentum logo
Team 7 Classroom

JavaScript Reps ๐Ÿ‹๏ธโ€โ™‚๏ธ

Posted on Jan 27th, 2021

Practice, practice, and more practice

Review what we have seen so far in JS by going back over notes โ€“ be sure to type out the code examples so that you can see the concepts illustrated in code for yourself. This will go a long way to establishing and deepening your understanding.

Optional project: ๐Ÿ‘ป Exercism: JavaScript Track

To get some more practice writing JavaScript, check out this awesome free online tool called Exercism.

You can sign up using your GitHub account. Choose the JavaScript track. There are two ways to use Exercism, in Practice Mode or Mentor Mode. For now, just choose Practice Mode.

Work through the setup instructions to install Exercism on your computer with Homebrew. The following exercises in the JavaScript track are a great place to begin, but youโ€™re of course welcome to explore and find the exercises that you find interesting.

  1. TwoFer
  2. Raindrops
  3. Resistor Color
  4. Hamming
  5. High Scores
  6. Word Count

For each exercise, follow the instructions on Exercism to upload your solution. Once you do that you will be able to see the solutions other folks have posted for the same exercise.

Iโ€™m not requiring you to submit your solutions to this. In the past Iโ€™ve assigned this to be turned in, and I recorded a video to show folks how to get exercism set up and submitted in the following video. Iโ€™m just including this here in case anyone finds it useful.

Video demo of downloading, completing, and submitting the first exercise

๐Ÿ”– Resources

  • MDN JS Guide
  • JS for Cats โ€“ If you want a low-key walk through of basics, this is actually pretty helpful. Itโ€™s older so you will see references to the var keyword instead of let or const.

Back to home