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 trialBen Mohammad
5,659 PointsWon't run!
var answer = prompt('What programming language is the name of a gem?'); if ( answer === 'RUBY'){ document.write ("<p>That's the right answer</p>"); }
else{ document.write("<p>I'm sorry that's wrong"</p>"); }
Doesnt run this dont know why? any help?comments ?
2 Answers
Steven Parker
231,269 PointsYou still have quote problems.
This line should only have two quotes, but it has three (note how the syntax coloring gives it away):
document.write("<p>I'm sorry that's wrong"</p>");
Steven Parker
231,269 PointsAhh.. I forgot who asked that recent one! NOW I get it.
Also, I had not seen the moderator's changes!
Ben Mohammad
5,659 Pointsthanks Jennifer again!
Jennifer Nordell
Treehouse TeacherHi there! You simply have a runaway quotation mark:
Your code:
else{ document.write("<p>I'm sorry that's wrong"</p>");
Corrected code:
else{ document.write("<p>I'm sorry that's wrong</p>"); //note the removal of the quotation mark after the word wrong
Hope this helps!
Ben Mohammad
5,659 PointsBen Mohammad
5,659 Pointsnot even the prompt runs