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

Ferenc Torok
Ferenc Torok
1,436 Points

Mistake in your code

I found a mistake in your code in this video: "The Conditional Challenge Solution". The second else if should be like this: else if ( correct >= 1 ) but yours is : >=2

1 Answer

Rohald van Merode
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree seal-36
Rohald van Merode
Treehouse Staff

Hi Ferenc Torok 👋

Nice catch! You are absolutely right, a mistake was made in the solution for this challenge. In the Teachers Notes underneath the video it was corrected, this is also the place where you can find the fixed code snippet 🙂

if ( correct === 5 ) {
  rank = "Gold"; 
} else if ( correct >= 3 ) {
  rank = "Silver";  
} else if ( correct >= 1 ) { // check for 1-2 correct
  rank = "Bronze";  
} else {
  rank = "None :(";
}