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 Exiting Loops

Jordan C
Jordan C
6,249 Points

What are examples of when you would use a for, while, and do while loop?

I'm having trouble understanding when you use each loop. I understand what they do and how the work, but I don't know when to use each.

1 Answer

james south
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
james south
Front End Web Development Techdegree Graduate 33,271 Points

the way they work indicates when one would be useful rather than another one. for loops run a finite number of times and are good for actions you want completed a certain number of times, like for each element in an array. while loops run until a condition is false, so are used when you may not know how many times you need an action completed, or are waiting for something else to happen. while loops might never run, so the do while loop is available which is just like the while loop, but will always run at least one time.