This website was built from scratch to pratice and demonstrate understanding of JavaScript and DOM manipulation. We were tasked with creating an interactive quiz game that would present the user with a series of coding related questions over a set period of time, with a timer indicating the time remaining. Wrong questions should reduce the amount of remaining time, and correct answers should increase the score. When time is finished, the user should be presented with the final score, and be give the opportunity to add their score and initials to the leaderboard of top scores in the past. Top scores should persist through reloads.
AS A coding boot camp student
I WANT to take a timed quiz on JavaScript fundamentals that stores high scores
SO THAT I can gauge my progress compared to my peers
GIVEN I am taking a code quiz
WHEN I click the start button
THEN a timer starts and I am presented with a question
WHEN I answer a question
THEN I am presented with another question
WHEN I answer a question incorrectly
THEN time is subtracted from the clock
WHEN all questions are answered or the timer reaches 0
THEN the game is over
WHEN the game is over
THEN I can save my initials and score
- Create a multiple-choice quiz game that times the user on a series of coding related questions.
- The app will run in the browser, and should feature dynamically updated HTML and CSS powered by JavaScript.
- Application user interface style should be clean, polished and responsive.
Website deployed at eeast.github.io/CH4-CodeQuiz/
Please refer to the LICENSE in the repo.