-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava.js
More file actions
73 lines (68 loc) · 1.67 KB
/
Copy pathjava.js
File metadata and controls
73 lines (68 loc) · 1.67 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
let boxes=document.querySelectorAll(".box");
let reset=document.getElementById("reset");
let msgcontainer=document.querySelector(".msg-container");
let newbtn=document.querySelector("#newbtn");
let msg=document.querySelector("#msg");
let turn0= true;
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],
];
const resetGame=()=>{
turn0=true;
enableBoxes();
msgcontainer.classList.add("hide");
}
boxes.forEach((box)=>{
box.addEventListener("click",()=>{
if(turn0){
box.innerText="O";
turn0=false;
}
else{
box.innerText="X";
box.style.color="white"
turn0=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.innerText="";
box.style.color="";
}
};
const showWinner =(winner)=>{
msg.innerText=`Congratulations, Winner is ${winner}`;
msgcontainer.classList.remove("hide");
disableBoxes();
};
const checkWinner=()=>{
for(let patterns of winPattern){
let posVal1=boxes[patterns[0]].innerText;
let posVal2=boxes[patterns[1]].innerText;
let posVal3=boxes[patterns[2]].innerText;
if(posVal1!="" && posVal2!="" && posVal3!=""){
if(posVal1===posVal2 && posVal2===posVal3){
console.log("Winner",posVal1);
showWinner(posVal1);
}
}
}
};
newbtn.addEventListener("click",resetGame);
reset.addEventListener("click",resetGame);