In this video

We make the winner property a Team object.

Assignment: Create the tiles data in the game grid component
  1. Create a model property for the Tiles
    1. Create a tiles property that is an array
    2. This property should be an array of objects
    3. Each object represents a single tile and should have the following properties:
      • text, x, y, tileType

They will look like this:

{ text: "Movie Name", x:1, y:0, tileType: "neutral" }

 

I finished! On to the next chapter