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 trialShawn Williams
14,762 PointsThis code only shows that I got one question right if I enter all answers correctly.
var html; var quiz; var answer; var response; var correctAnswer = 0;
var questions = [ ["What language do you use to add interactivity to web pages?", 0], ["What language do you use to style web pages?", 3], ["What language do you use to build the structure of web pages?", 5] ];
for( var i = 0 ; i < questions.length ; i += 1) { question = questions[i][0]; answer = questions[i][1]; response = parseInt(prompt(question)); correctAnswer = 0; if ( response === answer ) { correctAnswer += 1; } }
function print(message) { document.write(message); }
html = ("You answered" + " " + correctAnswer + " " + "correctly"); print(html);
2 Answers
james south
Front End Web Development Techdegree Graduate 33,271 Pointsyou seem to be resetting correctAnswer to 0 in each iteration of the loop
Shawn Williams
14,762 PointsOh I sure was, removing "correctAnswer = 0" from for if loop did the trick. Thank you.