From 1d2eba19fdea28bf537af629c7afb5a571d56ad6 Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife Date: Tue, 13 Apr 2021 07:20:51 +0100 Subject: [PATCH] Update code.js --- src/code.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/code.js b/src/code.js index 42c882d..7b49934 100644 --- a/src/code.js +++ b/src/code.js @@ -78,8 +78,6 @@ function win() { if (board[x][1][0] == board[x][2][0]) { - console.log("r: " + board[x][0][0]); - return board[x][0][0]; } } @@ -96,8 +94,6 @@ function win() { if (board[1][y][0] == board[2][y][0]) { - console.log("c: " + board[0][y][0]); - return board[0][y][0]; } } @@ -112,8 +108,6 @@ function win() { if (board[1][1][0] == board[2][2][0]) { - console.log("tl br: " + board[0][0][0]); - return board[0][0][0]; } }