Skip to content

Instantly share code, notes, and snippets.

@McLarenCollege
Last active March 3, 2022 09:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save McLarenCollege/3122a6fa4e7f0f002629995e4545de63 to your computer and use it in GitHub Desktop.
Save McLarenCollege/3122a6fa4e7f0f002629995e4545de63 to your computer and use it in GitHub Desktop.
Exercise : TicTacToe Board Object Diagram
// Given the following `board` variable representing a tic-tac-toe board,
// draw an Object Diagram for the given board
let board = [[' ', 'O', 'X'],
['O', 'X', ' '],
['O', ' ', 'X']];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment