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 trialErica Saunders
Full Stack JavaScript Techdegree Graduate 16,234 PointsMissing 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.
3 Answers
KRIS NIKOLAISEN
54,971 PointsIn 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'
Erica Saunders
Full Stack JavaScript Techdegree Graduate 16,234 PointsThank you!
Minh Le
Courses Plus Student 4,264 PointsHi 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.
Minh Le
Courses Plus Student 4,264 PointsI figured it out. Unbelievable! I missed an r in backgroundColor.
token.style.backgroundColor = this.owner.color;
Erica Saunders
Full Stack JavaScript Techdegree Graduate 16,234 PointsErica Saunders
Full Stack JavaScript Techdegree Graduate 16,234 PointsHere is a link to my workspace: https://w.trhou.se/ow49vz3nqp