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 For Loops and Loop Exiting

Kirstin Nelson
Kirstin Nelson
4,679 Points

How 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
True Pixels
3,178 Points
for (var i = 0; i < 10; i += 1) { 
document.write(i); 

}
Kirstin Nelson
Kirstin Nelson
4,679 Points

It ended up being "for" instead of "while" and thought it was originally 10 in the first place. Thank you!