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.

Task List

JavaScript task list utilizing local storage. The UI is built with the Materialize.css front-end framework which is based on Material Design. Tasks can be added/deleted to local storage as well as filtered using an input field. All tasks can also be cleared.

Loan Calculator

PENDING

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.