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 trialJason Clark
2,499 PointsCode is wrong for me. Also getting errors for +=, not sure why
var adjective = prompt("Please type a adjective."); var verb = prompt("Please type a verb."); var noun = prompt("Please type a noun."); alert("All done. Ready for the story?"); var sentence = "<h2>There was once a " + adjective; var sentence =+ " programmer who wanted to use Javascript to" + verb; var sentence =+ " the" + noun + ".</h2>";
document.write(sentence);
Whats wrong with this code? And why do I get console errors for +=?
2 Answers
Tyrell Jentink
8,415 PointsIn your question you correctly cite +=; However, in the code, you are consistently using =+.
Benjamin Payne
8,142 PointsHey Jason,
Hope this helps.
var adjective = prompt("Please type a adjective.");
var verb = prompt("Please type a verb.");
var noun = prompt("Please type a noun.");
alert("All done. Ready for the story?");
var sentence = "There was once a " + adjective;
var sentence += " programmer who wanted to use Javascript to" + verb;
var sentence += " the" + noun + ".";