Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 18, 2020 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/cc3aa5929477650ebc79633efcdc7b1b to your computer and use it in GitHub Desktop.
Save codecademydev/cc3aa5929477650ebc79633efcdc7b1b to your computer and use it in GitHub Desktop.
Codecademy export
const getUserChoice = userInput => {
userInput = userInput.toLowerCase();
if (userInput === 'rock' || userInput === 'paper' || userInput === 'scissors') {
return userInput;
} else {
console.log('Error! Unknown factor.');
}
}
function getComputerChoice() {
const randomNumber = Math.floor(Math.random() * 3);
switch (randomNumber) {
case 0:
return 'rock';
break;
case 1:
return 'paper';
break;
case 2:
return 'scissors';
break;
default:
return 'Error!';
break;
}
}
function 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 = (UserChoice, ComputerChoice) => {
const userChoice = getUserChoice('rock');
const computerChoice = getComputerChoice;
console.log('You threw: ' + userChoice);
console.log('The computer threw: ' + computerChoice);
console.log(determineWinner(userChoice, computerChoice()));
};
playGame()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment