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 trial

JavaScript JavaScript Loops, Arrays and Objects Tracking Multiple Items with Arrays Build a Quiz Challenge, Part 1

professionalb
seal-mask
.a{fill-rule:evenodd;}techdegree
professionalb
Full Stack JavaScript Techdegree Student 5,082 Points

Working code vs what I tried to do...

I tried two different approaches with the 'for loop' in this challenge.

https://w.trhou.se/gttjfkjxep

The first 'for loop' works, which was a few more steps as I had to set up two different variables for the question and answer and then compare them. I also had to use parseInt to ensure the input from the prompt was converted to an integer.

The second for loop does not work and only returns 0. Am I trying to squeeze in too much functionality into the following line? I'm guessing it has to do with parseInt.

if (parseInt(prompt(quizArr[i][0]) === quizArr[i][1])) {

1 Answer

You just need to relocate a parenthesis so parseInt only applies to the prompted question:

if (parseInt(prompt(quizArr[i][0])) === quizArr[i][1])