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

Tell us what’s happening:

i have run into a wall here what am i doing wrong
?

Your code so far

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

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

const playerScoreSpanElement = document.getElementById("player-score");
const computerScoreSpanElement = document.getElementById("computer-score");
const roundResultsMsg = document.getElementById("results-msg");

function showResults(userOption) {
  playerScoreSpanElement.innerText =`${playerScore}` ;
  computerScoreSpanElement.innerText = `${computerResult}`;
 roundResultsMsg.innerText = `${getRoundResults(userOption)}`;

};

showResults("Rock");

// 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 4

Hi @ace4real1999

You are updating the score before calling the getRoundResults() function.

Also, what is the variable computerResult?

Happy coding

2 Likes

That variable was a mistake because i also tried calling the function before updating the scores