Project: lb_tictactoe

JavaScript·1 min read·Apr 22, 2025

Tic Tac Toe game board

Tic-tac-toe is a game for two players who take turns marking the spaces in a three-by-three grid with X or O. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row first is the winner. If the grid is filled and there is no winner, the game is considered a draw.

The objective of this project is to write a JavaScript script that simulates and outputs a game of Tic-Tac-Toe play-by-play.

General instructions

Here are the general instructions to complete this project:

  1. The script must be named lb_tictactoe.js.

  2. The script must be written in JavaScript.

Implementation

Here are the implementation details for this project: