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 Simplify Repetitive Tasks with Loops Review while loops, do...while loops, and Loop Conditions

garryl torres
garryl torres
1,090 Points

'10' is incorrect? am i missing some code and/or is 10 not the correct value?

Hey guys, can someone please explain to me as to why the answer is not '10' for the loop to run 10 times? Or is there an addition to the code that i missed aside from this? maybe both and 10 is wrong? lol thanks in advance!

1 Answer

Steven Parker
Steven Parker
229,744 Points

The loop condition specifies when the loop will continue. So if you continue when the count is 10, the loop will actually run 11 times. Only then will the condition be false and the loop will stop.

garryl torres
garryl torres
1,090 Points

ahhhh gotcha! thank you kindly sir

Steven Parker
Steven Parker
229,744 Points

garryl torres — Glad to help. You can mark a question solved by choosing a "best answer".
And happy coding!