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 trialErnie Smith
8,511 PointsGetting "undefined" printed to page. Please help.
I can't figure out why my quiz doesn't work. This is my code:
var questions = [ ["What is after zero?" , 1], ["What is after 1?" , 2], ["What is after 3?" , 3] ]; var correctAnswers = 0; var question; var answer; var response; var html;
function print(message) { document.write(message); }
for (i = 0; i < questions.length; i+=1) { question = questions[i][0]; answer = questions[i][1]; response = parseInt(prompt(question)); if (response===answer) { correctAnswers += 1; } }
hmtl = "You got " + correctAnswers + " correct answers!"; print(html);
2 Answers
Ali .
15,521 PointsHi Ernie Smith,
You forgot to assign "i" for var. such as for (var i = 0; i < questions.length; i+=1).
Ernie Smith
8,511 PointsThanks Ali, I can't believe I missed that after going through the code of and over again.
However, even by adding var i = 0 I still get "undefined" printed to the page.
Any other help would be much appreciated. Thank you!
Ernie Smith
8,511 PointsDoh! Nevermind, I just noticed I wrote "hmtl = " not html! Grrrrrr....
Zack Jackson
30,220 PointsZack Jackson
30,220 PointsTo post formatted code to the forum start it out with a line of three back ticks and close it with a line of three backticks.
your code here