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 Introducing JavaScript Finishing the Game Control the Flow with Conditional Statements

Samuel Duarte
Samuel Duarte
2,931 Points

over 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?

Can you post a snapshot of your workspace? It is the camera icon in the upper right corner.

2 Answers

So, 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
Samuel Duarte
2,931 Points

It's the first javascript thing you do. I can't take the picture. Something's not working on my end.