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 trialBrandon Olson
Full Stack JavaScript Techdegree Student 5,445 PointsPrompt method brings up all questions and answers in one prompt.
How is this wrong when it's exactly the same as the video?
var firstQ = [ ['How many states in the US?', 50], ['What is 2 + 2?', 4], ['What month is it?', 12] ]; var correctAnswers = 0; var question; var answer; var response; var html;
function print(message) { document.write(message); }
for (var i = 0; i < firstQ.length; i += 1){ question = firstQ[i][0]; answer = firstQ[i][1]; response = parseInt(prompt(firstQ)); if (response === answer){ correctAnswers += 1; } } html = "You got " + correctAnswers + " question(s) right."; print(html);
1 Answer
KRIS NIKOLAISEN
54,971 PointsYou are prompting firstQ
, the array of questions, when you should be prompting question
.
This:
response = parseInt(prompt(firstQ));
should be:
response = parseInt(prompt(question));
Brandon Olson
Full Stack JavaScript Techdegree Student 5,445 PointsBrandon Olson
Full Stack JavaScript Techdegree Student 5,445 PointsThank you. Im probably going to need to start the loop/array sessions over. Having a real difficult time with it.