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 The Refactor Challenge Solution

Max Gerek
Max Gerek
2,718 Points

Why does the code not work with the document.write written inside the brackets?

Hi,

With the document.write inside the brackets I see: generate random color values > assign to rgbColor > write the color > add one to the var i > re-run

But this produces more than 10 divs.

With the document.write outside the brackets I see it as: generate random color values > assign rgbColor > add one to var i > generate random color value ....and repeat that when it finishes and gets to document.write it would only be writing the last color.

I understand I am seeing this wrong, how does the browser read the program with the document.write on the outside.

1 Answer

Steven Parker
Steven Parker
230,688 Points

The concatenating assignment operator ("+=") adds on to what is already there. So when the loop ends, the "html" variable has a string containing all the elements, not just the last one. That's why you only need to use "document.write" one time to display them all.

Thanks Steven, that helped me understand