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 trialSamuel Duarte
2,931 Pointsover 100
When I get the score over 100 it does not show the badge to win the game. How could I make it so it will give me the badge if I go over 100?
2 Answers
Adam Pizzo
Python Development Techdegree Graduate 19,355 PointsSo, the condition to determine if you win or not is if currentScore === winningScore (The value is set to 100 by default). You need to update it to >= if you want it to check for values 100 and above.
For Example:
if (currentScore >= winningScore) {
createBadge();
}
Samuel Duarte
2,931 PointsIt's the first javascript thing you do. I can't take the picture. Something's not working on my end.
KRIS NIKOLAISEN
54,971 PointsKRIS NIKOLAISEN
54,971 PointsCan you post a snapshot of your workspace? It is the camera icon in the upper right corner.