Various JS Projects
DOM Manipulation & Events
These are some small vanilla JavaScript applications I have built using courses and tutorials in an attempt to gain a better understanding of the language. I learn best by seeing how others have built something and getting insight into how something works under the hood. It's great to have projects as references for future projects as well.



Number Guessing Game
JavaScript number guessing game with UI built using the Skeleton boilerplate. A random number is chosen using the Math.random method. The player must choose a number between the min and max, with a certain amount of guesses. The remaining number of guesses are displayed after each incorrect guess. Player is notified when they guess the correct number, and is given the option to play again by reloading the window. Utilizes DOM manipulation, including CSS styles and HTML content.