-
To renew and reinforce my understanding of pure JavaScript, I've been taking courses about JavaScript fundamentals.
-
A course I enjoyed was Just JavaScript by Dan Abramov and Maggie Appleton.
-
Another course I'm enjoying is Jonas Schmedtmann's The Complete JavaScript Course, which has a project about DOM manipulation that is the basis of this number guessing game.
-
In Take A Guess, users guess a number between 1 and 20, and the DOM is manipulated based on the nature of the guess.
git clone git@github.com:emjose/take-a-guess.git && cd take-a-guess
open index.html
• Take A Guess is a progressive web app.
• The user is informed if their guess is correct or incorrect.
• Correct guesses set the high score, while incorrect guesses decrease the score.