Hi, everyone,
i ve tried to figure out the issue now for 2 days and couldn’t solve it.
Please, can someone help me, to show and explain where i 've to put the reference (object) userInput and does my code will work after that, thanks in advance.
My code is down below and the error code.
const getUserChoice = userInput => {
userInput = userInput.toLowerCase();
if (userInput === 'rock' || userInput === 'scissors' || userInput === 'paper') {
return userInput;
} else {
return console.log('Error:' + userInput);
}
};
const getComputerChoice = () => {
let randomNumber = Math.floor(Math.random() * 3);
switch (randomNumber) {
case 0:
return 'rock';
break;
case 1:
return 'scissors';
break;
case 2:
return 'paper';
break;
}
};
const determineWinner = (userChoice, computerChoice) => {
userChoice = getUserChoice();
computerChoice = getComputerChoice();
if (userChoice === computerChoice) {
return 'The game is a tie!';
}
};
if (userChoice === 'rock') {
if (computerChoice === 'paper') {
return 'Computer won!';
} else {
return 'You won!';
}
}
if (userChoice === 'paper') {
if (computerChoice === 'scissors') {
return 'Computer won!';
} else {
return 'You won!';
}
}
if (userChoice === 'scissors') {
if (computerChoice === 'rock') {
return 'Computer won!';
} else {
return 'You won!';
}
}
const playGame = () => {
const userChoice = getUserChoice('rock');
const computerChoice = getComputerChoice();
console.log('You threw:' + userChoice);
console.log('The computer threw:' + computerChoice);
console.log(determineWinner(userChoice, computerChoice));
};
playGame();
/home/ccuser/workspace/javascript_101_Unit_3/Unit_3/rockPaperScissors.js:34
if (userChoice === 'rock') {
^
ReferenceError: userChoice is not defined
at Object.<anonymous> (/home/ccuser/workspace/javascript_101_Unit_3/Unit_3/rockPaperScissors.js:34:5)
at Module._compile (module.js:571:32)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.runMain (module.js:605:10)
at run (bootstrap_node.js:427:7)
at startup (bootstrap_node.js:151:9)
at bootstrap_node.js:542:3