-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
79 lines (67 loc) · 1.7 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
79
let boxes = document.querySelectorAll(".box");
let resetBtn = document.querySelector("#reset-btn");
let newGameBtn =document.querySelector("#new-btn");
let msgContainer = document.querySelector(".msg-container");
let msg = document.querySelector("#msg");
let turnO = true; //player O
const winPattern = [
[0, 1, 2],
[0, 3, 6],
[0, 4, 8],
[1, 4, 7],
[2, 5, 8],
[2, 4, 6],
[3, 4, 5],
[6, 7, 8],
];
boxes.forEach((box) => {
box.addEventListener("click", () => {
if (turnO) {
//playerO
box.innerHTML = "O";
turnO = false;
} else {
//PlayerX
box.innerHTML = "X";
turnO = true;
}
box.disabled=true;
checkWinner();
});
});
const disableBoxes = () =>{
for(let box of boxes){
box.disabled=true;
}
}
const enableBoxes = () =>{
for(let box of boxes){
box.disabled=false;
box.innerHTML="";
}
}
const resetGame = ()=>{
turnO = true;
enableBoxes();
msgContainer.classList.add("hide");
}
const showWinner = (winner) => {
msg.innerHTML = `Congratulation, Winner is ${winner}`;
msgContainer.classList.remove("hide");
disableBoxes();
}
const checkWinner = () => {
for(let pattern of winPattern){
let pois1Val = boxes[pattern[0]].innerHTML;
let pois2Val = boxes[pattern[1]].innerHTML;
let pois3Val = boxes[pattern[2]].innerHTML;
if(pois1Val !="" && pois2Val !="" && pois3Val != ""){
if(pois1Val === pois2Val && pois2Val===pois3Val)
{
showWinner(pois1Val);
}
}
}
};
newGameBtn.addEventListener("click", resetGame);
resetBtn.addEventListener("click",resetGame);