-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrockPaperScissorsV2.html
More file actions
88 lines (80 loc) · 2.23 KB
/
rockPaperScissorsV2.html
File metadata and controls
88 lines (80 loc) · 2.23 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>Rock Paper Scissors</title>
</head>
<body>
<p>Rock Paper Scissors</p>
<button onclick="
const computerMove = pickComputerMove();
let result = '';
if(computerMove === 'Rock')
{
result = 'Tie';
}
else if(computerMove === 'Paper')
{
result = 'You lose';
}
else if(computerMove === 'Scissors')
{
result = 'You win';
}
alert(`You picked rock. Computer picked ${computerMove}. ${result}`);
">Rock</button>
<button onclick="
const computerMove = pickComputerMove();
let result = '';
if(computerMove === 'Rock')
{
result = 'You win';
}
else if(computerMove === 'Paper')
{
result = 'Tie';
}
else if(computerMove === 'Scissors')
{
result = 'You lose';
}
alert(`You picked paper. Computer picked ${computerMove}. ${result}`);
">Paper</button>
<button onclick="
const computerMove = pickComputerMove();
let result = '';
if(computerMove === 'Rock')
{
result = 'You lose';
}
else if(computerMove === 'Paper')
{
result = 'You win';
}
else if(computerMove === 'Scissors')
{
result = 'Tie';
}
alert(`You picked scissors. Computer picked ${computerMove}. ${result}`);
">Scissors</button>
<script>
function pickComputerMove()
{
let computerMove = '';
const randomNumber = Math.random();
if(randomNumber >= 0 && randomNumber < 1/3)
{
computerMove = 'Rock';
}
else if(randomNumber >= 1/3 && randomNumber < 2/3)
{
computerMove = 'Paper';
}
else if(randomNumber >= 2/3 && randomNumber < 1)
{
computerMove = 'Scissors';
}
return computerMove;
}
</script>
</body>
</html>