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 trialgarryl 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
231,236 PointsThe 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
1,090 Pointsgarryl torres
1,090 Pointsahhhh gotcha! thank you kindly sir
Steven Parker
231,236 PointsSteven Parker
231,236 Pointsgarryl torres — Glad to help. You can mark a question solved by choosing a "best answer".
And happy coding!