Tic Tac Toe Game | Java, HTML, JS, WebSocket, StompJS | Frontend part

Опубликовано: 25 Декабрь 2020
на канале: Java Master
5,767
73

In this video, we implement the Frontend part of the Tic Tac Toe Game.
The technologies we use HTML, CSS, JS, WebSocket, StompJS, REST API, AJAX.
In the final version of the video one bugfix hasn't passed. In script.js, reset() function you need to change turns to turns = [["#", "#", "#"], ["#", "#", "#"], ["#", "#", "#"]]; instead of turns = ["#","#","#","#","#","#","+","#"].

The link to the original template: https://codepen.io/marxcom/pen/LWQXRX

The link to the source code: https://github.com/caligula95/tic-tac...

The link to the backend part tutorial:    • Tic Tac Toe Game over the Internet | ...