Review DOM Manipulation by Building a Rock, Paper, Scissors Game - Step 6

Tell us what’s happening:

It shows an error resetGame function should set the playerScore to 0.
I did it in the first line itself. What am I doing wrong here?

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

function resetGame() {
 playerScore = 0;
 computerScore = 0;
 playerScoreSpanElement.innerText = playerScore;
 computerScoreSpanElement.innerText = computerScore;
 resetGamebtn.style.display = "none";
 optionsContainer.style.display = "block";
 winnerMsgElement.innerText = "";
 roundResultMsg.innerText = "" ;
};

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36

Challenge Information:

Review DOM Manipulation by Building a Rock, Paper, Scissors Game - Step 6

It should be resetGameBtn, uppercase B.

This should be roundResultsMsg. With Results.

I think after these changes your code should pass.

1 Like

Thank you so much. It’s really hard to spot spelling mistakes sometimes. Thank you very much.

1 Like