added Tik tak toe game #302
Merged
Merged
Conversation
|
🧩 PR Checklist Hi @niranjanpatil1010, before merging please ensure:
|
|
⭐ Hey @niranjanpatil1010, if you like this project, don't forget to star the repository! 🚀 |
ayushHardeniya
approved these changes
Oct 31, 2025
Collaborator
ayushHardeniya
left a comment
There was a problem hiding this comment.
seems good, ready to merge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 Pull Request Title
added Tik tak toe game
✅ Description
it is a 2-player Tic-Tac-Toe game with turn-based play, win/draw detection, and reset/new game functionality.
-3x3 grid of boxes (.box)
-Control buttons: #reset (reset game), #newgame (start new game)
-Message container: #msg for winner/draw messages
-Popup container: .win for game-end display
how to play
-Players take turns: O and X
-Check 8 winning patterns after each move
-Detect draw if all boxes filled
-Reset clears grid and restarts turns
Language: HTML / CSS / JavaScript
🔗 Related Issue
Fixes # or Closes #
closes #287
🛠️ Approach / Changes Made
-Added click event listeners for each box to toggle between O and X turns.
-Included win detection using predefined winning patterns.
-Handled draw condition when all boxes are filled without a winner.
-Added Reset and New Game buttons to restart the game.
-Simplified DOM updates and improved code readability.
📸 Screenshots / Videos (if applicable)
✅ Checklist
💬 Additional Notes (Optional)