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

Jong Kim
Jong Kim
6,145 Points

What's the difference of the first question and fifth question? Why does fifth question need another text += i + ' ' ;

https://w.trhou.se/z6x7yiph1l

Why does fifth question need another text += i + ' ' ; but first question?

1 Answer

Steven Parker
Steven Parker
229,732 Points

You didn't say which program (the snapshot has 3 different ones), but they mostly all seem to be creating a string of numbers separated by spaces into a variable named "text". So "i" is the variable with the number and the plus adds on a space.

The obvious difference between the examples is the type of loop being used.

Jong Kim
Jong Kim
6,145 Points

I'm asking about while loop section.