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

Tell us what’s happening:

the playerScore is set at 0 still the error message is your reset function should set the playerScore to 0.

Your code so far

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

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

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

// User Editable Region
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) 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

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

The code is not passing sayying that ,the resetGame function should set the playerScore to 0, but I did set it to 0 and still the code is not being passed.

Never mind guys got my mistake.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.