Tell us what’s happening:
Why is a template literal being used here in the answers on the forum the question just asked to input the userOption
and computerResult
…
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
function getRoundResults(userOption) {
const computerResult = getRandomComputerResult();
if (hasPlayerWonTheRound (userOption, computerResult)) {
playerScore.Update += 1;
return "Player wins! userOption beats computerResult";
}
if(userOption === computerResult){
return "It's a tie! Both chose userOption";
}
else{
computerScore.Update += 1;
return "Computer wins! computerResult beats userOption";
}
}
console.log(getRoundResults("Rock"));
console.log("Player Score: ", playerScore, "Computer Score: ", computerScore);
// 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/131.0.0.0 Safari/537.36
Challenge Information:
Review DOM Manipulation by Building a Rock, Paper, Scissors Game - Step 3