-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
52 lines (40 loc) · 980 Bytes
/
script.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
function getcompchoice(){
return Math.floor(Math.random()*(3-1 +1)+1)
}
function play(comp,player){
player=player.toLowerCase()
console.log(comp)
switch(comp){
case 1:
comp='rock';
break;
case 2:
comp='paper';
break;
case 3:
comp='scissors';
break;
}
if (comp==player){
return 'its a tie';
}
else if (player=='rock' & comp=='scissors'){
return 'you win rock beats scissors'
}
else if (player=='paper' & comp=='rock'){
return 'you win paper beats rock'
}
else if (player=='scissors' & comp=='paper'){
return 'you win scissors beats paper'
}
else{
return 'you lose '+comp+' beats '+player
}
}
function game(){
for (let i=0;i<5;i++){
input=prompt('enter rock paper or scissors: ')
console.log(play(getcompchoice(),input))
}
}
game()