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 trialsasipim Suksareewattanakul
5,417 PointsI only get 0 print out as my score. please help!
var quiz = [
["Who is the president?" , "Trump"],
["What is the most popular pet?" , "Dog"],
["What is our planet?" , "Earth"]
];
var score = 0;
function print(message) {
document.write(message);
}
for (var i = 0; i < quiz.length; i += 1) {
var score = 0;
var answer = prompt(quiz[i][0]).toLowerCase();
if (answer === quiz[i][1]) {
score += 1;
}
}
document.write(score);
2 Answers
Elijah Quesada
Front End Web Development Techdegree Graduate 32,965 PointsWhat worked for me is changing the answers to lower case and adding .toLowerCase() method to the answer variable. I believe it was the .toLowerCase() at the end of prompt that was causing the issue.
var quiz = [
["Who is the president?" , "trump"],
["What is the most popular pet?" , "dog"],
["What is our planet?" , "earth"]
];
var score = 0;
for (var i = 0; i < quiz.length; i++) {
var answer = prompt(quiz[i][0]);
answer = answer.toLowerCase();
if (answer === quiz[i][1]) {
score += 1;
}
}
console.log(score);
Otto linden
5,857 PointsHere is another way tho code it!
var quiz = [
["Who is the president?" , "trump"],
["What is the most popular pet?" , "dog"],
["What is our planet?" , "earth"]
];
var score = 0;
for (var i = 0; i < quiz.length; i++) {
var answer = prompt(quiz[i][0]);
if (answer.toLowerCase() === quiz[i][1]) {
score += 1;
}
}
alert(score);