ultimate-tictactoe/src/assets/UltimateTTT.js
2024-08-27 22:16:09 -04:00

14 lines
357 B
JavaScript

export class TTTBoard {
constructor() {
this.stateArray = [
[null, null, null],
[null, null, null],
[null, null, null]
];
}
// This is a fun exploit of JavaScript's loose Typing, player can be a nested TTTBoard!
play(row, col, player) {
this.stateArray[row][col] = player;
}
}