Posts

Tic Tac Toe

Tic-Tac-Toe Game Tic-Tac-Toe Human vs Human Human vs Computer Play as X Play as O Start Game const cells = document.querySelectorAll('.cell'); const result = document.getElementById('result'); const startBtn = document.getElementById('start-btn'); const humanVsHumanBtn = document.getElementById('human-vs-human'); const humanVsComputerBtn = document.getElementById('human-vs-computer'); const xBtn = document.getElementById('x'); const oBtn = document.getElementById('o'); let board; let currentPlayer; let humanPlayer; let computerPlayer; let isHumanVsHuman = true; let gameActive = false; // Winning combinations const winCombos = [ [0, 1,...

Hellow friend

 Hello world