Students will implement a Jeopardy game.
Below is the recommended order in which to complete the project.
- Note the
categories
array at the top of the file. These are the category headers. - Follow the instructions in the file and write code where it reads
// Add code here
- The output should be:
- Note the
numCategories
andquestionValues
variables at the top of the file. - Follow the instructions in the file and write code where it reads
// Add code here
- The output should be:
-
Students and volunteers should take a minute to read the instructions.
- There is a lot of code in this file and students are asked to carefully append it.
-
Follow the instructions and write code where it reads
// Add code here
-
If done correctly, the following should be true:
- Each question block is clickable
- On-click renders a popup like so:
- Clicking "Show Answer" will show the answer like so:
- Clicking "Close" will hide the modal and remove the question from the board like so:
-
Follow the instructions in the file and write code where it reads
// Add code here
-
If done correctly, the following should be true:
- On launching, there is a new "Current Score: 0" div at the bottom of the board like so:
- After clicking on a question, then clicking "Show Answer", the player is presented with an option to select "Correct" or "Wrong".
- If the player chooses "Correct", the score is updated to reflect the added amount.
- Ensure that choosing "Wrong" subtracts the amount instead.
- Attempt the bonuses.
- Improve the styling.