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 trialJames Pawson
2,066 PointsScript (prompts) not executing.
var questions = 3; var questionsLeft = ' [' + questions + 'questions left]'; var adjective = prompt('Please type an adjective' + questionsLeft); questions -= 1; questionsLeft = ' [' + questions = 'questions left]'; var verb = prompt('Please type a verb' + questionsLeft); questions -= 1; questionsLeft = ' [' + questions = 'questions left]'; var noun = prompt('Please type a noun' + questionsLeft); alert('All done. Ready for the message?'); var sentence = "<h2>There once was a " + adjective; sentence += ' programmer who wanted to use JavaScript to ' + verb; sentence += ' the ' + noun + '.</h2>'; document.write(sentence);
This is my script but it's not executing anything.
3 Answers
Steven Parker
231,236 PointsTo preserve your program structure, use "Markdown" formatting. There's a pop-up "cheatsheet" below, or you can watch this video on code formatting.
But at first glance, it looks like you have a couple of incorrect operator symbols, for example:
questionsLeft = ' [' + questions = 'questions left]'; // original
questionsLeft = ' [' + questions + 'questions left]'; // fixed
Kristoffer A-L
5,863 PointsHi James,
I think I spot the reason. If you look at lines 4 and 7, there should be a "+" instead of a "=".
var questions = 3;
var questionsLeft = ' [' + questions + 'questions left]';
var adjective = prompt('Please type an adjective' + questionsLeft); questions -= 1;
questionsLeft = ' [' + questions = 'questions left]';
var verb = prompt('Please type a verb' + questionsLeft);
questions -= 1;
questionsLeft = ' [' + questions = 'questions left]';
var noun = prompt('Please type a noun' + questionsLeft);
alert('All done. Ready for the message?');
var sentence = "<h2>There once was a " + adjective; sentence += ' programmer who wanted to use JavaScript to ' + verb; sentence += ' the ' + noun + '.</h2>';
console.log(sentence);
Best regards, Kris
James Pawson
2,066 PointsThanks for the answers! ItNs asking me to pick a best answer, although they re both equally as good!