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 trialKirstin Nelson
4,679 PointsHow to create a for loop that executes 10 times, writing the value of the variable i to the document?
I am not sure what I am typing wrong for this quiz or I am missing something obvious. It is for an exiting loop.
while (var i = 0; i < 11; i += 1) { document.write(i); }
3 Answers
True Pixels
3,178 Pointsfor (var i = 0; i < 10; i += 1) {
document.write(i);
}
Cindy Lea
Courses Plus Student 6,497 PointsIt should be i<10
Kirstin Nelson
4,679 PointsIt ended up being "for" instead of "while" and thought it was originally 10 in the first place. Thank you!