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 Adding the Game Logic Reviewing 'Adding the Game Logic'

At the end of the challenge I have a somewhat functional game, however, the dropped tokens do not show up correctly

Once the token is dropped, it is not visible on the screen, even though it does exist (if i drop another token, it will drop in the correct slot.

Furthermore, even though the next token to drop shows correctly above the top-left column and shows the correct color, it is only the first token that is ever moved.

Update:

Solved it, I accidentally used quotes instead of backticks in the token id, causing the id to always be the same. (string instead of template literal).

since they look so similar it was easy to overlook.