Please enable JavaScript.
Coggle requires JavaScript to display documents.
OOJSBE (game = new Game();, class Game {} (constructor() (this.board = new…
OOJSBE
game = new Game();
class Game {}
constructor()
this.board = new Board();
this.players = this.createPlayers();
this.ready = false
get activePlayer()
createPlayers()
startGame()
handleKeydown(e)
playToken()
new Player()
class Board {}
constructor()
this.rows = 6;
this.columns = 7;
this.spaces = this.createSpaces();
createSpaces()
drawHTMLBoard()
btn id
'begin-game'
click
game.startGame();