Tell us what’s happening:
- You should add an event listener to the resetGameBtn button. The event listener should take in a “click” event and a reference to the resetGame function.
what does that it means? here is the code but it could no align with the above:
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
function resetGame(){
playerScore=0;
computerScore=0;
resetGameBtn.style.display="none";
optionsContainer.style.display="block";
winnerMsgElement.innerHTML="";
roundResultsMsg.innerHTML="";
playerScoreSpanElement.innerHTML=playerScore;
computerScoreSpanElement.innerHTML=computerScore;
}
resetGameBtn.addEventListener("click",resetGame)
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36
Challenge Information:
Build a Rock, Paper, Scissors Game - Step 13