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 trialJulia T
2,755 PointsWhy doesn't a prompt pop up? (pls check out my code) š
function print(message) {
document.write(message);
}
var correct = 0;
var answer;
var questionList = [
["How many countries are there?", 195],
["How many planets are there?", 8],
["When you call a function, the pieces of information being passed to that function are called what?", "arguments"]
];
for (var i = 0, i < questionList.length, i++) {
answer = prompt(questionList[i][0]);
if (answer == questionList[i][1]) {
correct += 1;
}
}
print("You've answered " + correct + " questions.");
(There're probably 99 problems with my code but please bear with me ššš)
1 Answer
Steven Parker
231,248 PointsThe clauses of a "for" loop must be separated by semicolons:
for (var i = 0, i < questionList.length, i++) { // original
for (var i = 0; i < questionList.length; i++) { // corrected
š
Julia T
2,755 PointsJulia T
2,755 Pointsoh that's right š...thank you again Steven you're a lifesaver ššš