I cannot find where I have created a syntax error. Here is my code;
const getUserChoice = userInput =>
{ userInput = userInput.toLowerCase();
if (userInput === ‘rock’ || userInput === ‘paper’ || userInput === ‘scissors’) {
return userInput;
} else {
console.log(‘Error!’);
}
}
const getComputerChoice = computerInput =>
{ const randomNumber = Math.floor(Math.random() * 3);
switch(randomNumber) {
case 0:
return ‘rock’;
case 1:
return ‘paper’;
case 2:
return ‘scissors’;
}
}
const determineWinner = (userChoice, computerChoice) => {
if(userChoice === computerChoice) {
return ‘The game is a tie!’;
}
if(userChoice === ‘rock’) {
if(computerChoice === ‘paper’) {
return ‘The computer won!’;
} else {
return ‘You won!’;
}
}
if(userChoice === ‘paper’) {
if(computerChoice === ‘scissors’) {
return ‘The computer won!’;
} else {
return ‘You won!’;
}
}
if(userChoice === ‘scissors’) {
if(computerChoice === ‘rock’) {
return ‘The computer won!’;
} else {
return ‘You won!’;
}
}
const playGame =() => {
const userChoice = getUserChoice(‘scissors’);
const computerChoice = getComputerChoice();
console.log(‘You threw:’ + userChoice);
console.log(‘The computer threw:’ + computerChoice);
console.log(determineWinner(userChoice, computerChoice));
};
playGame();
Singed, Newbie