In this video

We handle the click event of each tile, and just log out to the console the coordinates of the tile that was clicked.

Assignment:
  1. Create the structure to independently control the css class of each tile.
  2. Do this by creating 9 different class properties named "tileClassXX" where XX is the coordinates of the tile.
  3. Bind each property to the css class of the correct tile.
  4. You should be able to set each of them to a default in the class and have the HTML reflect that class. The classes are "red", "blue", "neutral" and "assassin".
  5. In the next section we'll modify them in our click event.
 

I finished! On to the next chapter