-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTic-Tac-Toe-by-user-and-system-js.js
66 lines (58 loc) · 1.95 KB
/
Tic-Tac-Toe-by-user-and-system-js.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
const win = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9],
[1, 4, 7],
[2, 5, 8],
[3, 6, 9],
[1, 5, 9],
[3, 5, 7]
];
function checkWinner() {
let isWon = false;
for (let i = 0; i < win.length; i++) {
const condition = win[i];
const box1 = document.getElementById('txt' + condition[0]).value;
const box2 = document.getElementById('txt' + condition[1]).value;
const box3 = document.getElementById('txt' + condition[2]).value;
if (box1 != "" && box2 != "" && box3 != "") {
if (box1 == box2 && box2 == box3) {
isWon = true;
document.getElementById("disText").innerHTML =box1 +" is win ";
document.getElementById('txt' + condition[0]).style.color = "red";
document.getElementById('txt' + condition[1]).style.color = "red";
document.getElementById('txt' + condition[2]).style.color = "red";
for (let j = 1; j < 10; j++) {
id = "txt" + j;
document.getElementById(id).disabled = true;
}
}
}
}
}
xTurn = true;
function printXorO(id) {
document.getElementById(id).value = "X";
document.getElementById(id).disabled = true;
generateRandomNumber();
}
function generateRandomNumber() {
let Randomnumber = Math.floor((Math.random() * 9) + 1);
console.log("randomNumber = "+Randomnumber);
randomFunction(Randomnumber);
}
function randomFunction(x) {
for (let i = 1; i < 10; i++) {
id = 'txt' + i;
if (x == i) {
if (document.getElementById(id).disabled == false) {
document.getElementById(id).value = "0";
document.getElementById(id).disabled = true;
}
else{
console.log("again");
generateRandomNumber();
}
}
}
}