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 trialTaylor O'Reilly
9,417 PointsAdd an else clause to complete the conditional statement. Best method
Perhaps I am wrong but given what we have learned so far, shouldn't we do something like this?
var answer = prompt('what is the best programming language?').toLowerCase();
if (answer === 'javascript'){
alert('you are correct!');
} else {
alert('JavaScript is the best language!');
}
Is my code wrong or is it just because I am going past what the directions say?
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHi Taylor,
Technically you code is correct, but you are right in that you went beyond what the challenge was asking for, and the challenges can be very picky... Spelling mistakes or added code will often result in a "Bummer!"
So, delete the .toLowerCase()
you added to the answer variable. Then change your comparison to check for JavaScript
, with a capital J and a capital S.
Keep Coding! :)
Taylor O'Reilly
9,417 PointsTaylor O'Reilly
9,417 PointsThat's great to know that at least my code was correct! I kind of figured that it was because the code was outside the bounds of the question but when I checked it on jsfiddle and the console showed no errors it was nice to know that what I thought was right actually was!