Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Object-Oriented JavaScript: Challenge Rendering the Game startGame() Method Solution

Missing Token

My code lines up with the video's code, but when I launch the HTML in my browser, the token on the top left corner is missing? The console shows no errors.

Here is a link to my workspace: https://w.trhou.se/ow49vz3nqp

3 Answers

In your Game.js file change this:

  this.board = new Board;

to this:

  this.board = new Board();

and in createPlayers() in the same file change this:

  '#ei5258'

to this (1 instead of i) for the color red:

  '#e15258'

Thank you!

Hi Erica, Did you figure out the solution for your missing token? Can you please post it? I have the same problem. Thank you very much.

I figured it out. Unbelievable! I missed an r in backgroundColor.
token.style.backgroundColor = this.owner.color;