forked from Dezenix/frontend-html-css-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
78 lines (65 loc) · 2.46 KB
/
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
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
const MyScore = document.getElementById('myScore');
const PCScore = document.getElementById('computerScore');
const buttons = document.querySelectorAll('.choice button');
const PlayerHand = document.querySelector('.display i');
const PCHand = document.querySelector('.hand i');
let computerScore = 1;
let humanPoint = 1;
const rock = "fas fa-hand-rock";
const paper = "fas fa-hand-paper";
const scissors = "fas fa-hand-scissors";
const randomClasses = [rock, paper, scissors];
const output = document.getElementById('inst');
const lose = () => {
output.innerHTML = "lose";
output.style.color = 'red';
}
const draw = () => {
output.innerHTML = "Draw";
output.style.color = 'yellow';
}
const win = () => {
output.innerHTML = "win";
output.style.color = 'green';
}
const Start = () => {
buttons.forEach(btn => {
btn.addEventListener('click', (e) => {
let butt = e.target.className;
PlayerHand.className = butt;
let pcChoice = Math.floor(Math.random() * randomClasses.length);
PCHand.className = randomClasses[pcChoice];
if (PlayerHand.className === PCHand.className) {
MyScore.innerHTML = MyScore.innerHTML;
PCScore.innerHTML = PCScore.innerHTML;
draw();
}
else if (PlayerHand.className === rock && PCHand.className === scissors) {
MyScore.innerHTML = humanPoint;
humanPoint++;
win();
} else if (PlayerHand.className === rock && PCHand.className === paper) {
PCScore.innerHTML = computerScore;
computerScore++;
lose();
} else if (PlayerHand.className === paper && PCHand.className === scissors) {
PCScore.innerHTML = computerScore;
computerScore++;
lose();
} else if (PlayerHand.className === paper && PCHand.className === rock) {
MyScore.innerHTML = humanPoint;
humanPoint++;
win();
} else if (PlayerHand.className === scissors && PCHand.className === rock) {
PCScore.innerHTML = computerScore;
computerScore++;
lose();
} else if (PlayerHand.className === scissors && PCHand.className === paper) {
MyScore.innerHTML = humanPoint;
humanPoint++;
win();
}
});
});
}
Start();