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 trialdadfsfsfawf
Full Stack JavaScript Techdegree Student 9,534 PointsNo matter what I enter I seem to get the output that I got one question right?
function print(message) {
document.write(message);
}
var quiz = [
['What is my name?', 'Cyrus'],
['How old am I?', 23],
['Where do I live?', 'Las Vegas']
]
var questions;
var answers;
var response;
var correctAnswers = 0;
var html;
for ( var i = 0; i < quiz.length; i++ ) {
questions = quiz[i][0];
answers = quiz[i][1];
response = prompt(questions);
if (answers === response) {
correctAnswers =+ 1;
}
}
html = print('You got ' + correctAnswers + ' question(s) correct!')
1 Answer
KRIS NIKOLAISEN
54,971 PointsYou have:
correctAnswers =+ 1;
which is equivalent to correctAnswers = 1.
It should be:
correctAnswers += 1;
dadfsfsfawf
Full Stack JavaScript Techdegree Student 9,534 Pointsomg, good catch, thank you.
dadfsfsfawf
Full Stack JavaScript Techdegree Student 9,534 Pointsdadfsfsfawf
Full Stack JavaScript Techdegree Student 9,534 PointsI have already taken into consideration parseInt() and toLowerCase btw