-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rock paper scissors.JS
73 lines (65 loc) · 1.51 KB
/
Rock paper scissors.JS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Function to get user's choice
const getUserChoice = (userInput) =>{
//The user can type Rock,ROCK,rock..etc
userInput = userInput.toLowerCase();
if(userInput === 'rock' || userInput === 'paper' || userInput === 'scissors')
{
return userInput;
}
//If user inputs something invalid
else{
console.log('Invalid input');
}
};
// Function to get computer's choice
const getComputerChoice = () => {
//to get choice from 0 to 2
const randomNumber = Math.floor(Math.random() * 2);
switch (randomNumber){
case 0:
return 'rock';
case 1:
return 'paper';
case 2:
return 'scissors';
}
};
// Function to determine the winner
let determineWinner = (userChoice, computerChoice) =>
{
if(computerChoice === userChoice)
{
return 'Draw';
}
if(userChoice === 'paper'){
if(computerChoice === 'rock')
{
return 'You won!'
} else{
return 'computer won!'
}
}
if(userChoice === 'rock'){
if(computerChoice === 'paper')
{return 'You won!'
} else{
return 'computer won!'
}
}
if(userChoice === 'scissors'){
if(computerChoice === 'paper')
{return 'You won!'
} else{
return 'computer won!'
}
}
};
// Function to play game
let playGame =() => {
let userChoice = getUserChoice('paper');
console.log('user : ' + userChoice);
let computerChoice = getComputerChoice();
console.log('computer :' + computerChoice );
console.log(determineWinner(userChoice, computerChoice));
};
playGame();