diff --git a/TicTacToe/app.js b/TicTacToe/app.js index 8f1665b..b1f8721 100644 --- a/TicTacToe/app.js +++ b/TicTacToe/app.js @@ -43,6 +43,7 @@ boxes.forEach((box) => { if (count === 9 && !isWinner) { gameDraw(); + count=0; } }); });