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 `do ... while` Loops

Kelly Walsh
Kelly Walsh
3,642 Points

Create a 'do . . . while' loop very basic question

After completing the task associated with this video, I'm looking for a little bit more clarity on the do/while loop.

So, the basic syntax is:

do {
something; 
} while (some condition)
other code, possibly document.write(), alert(), whatever;

Do you need to add anything (; braces, etc.) after the while (some condition) portion?

Is the closing parenthesis what signals the javascript reader that the while condition is over?

I was hesitant to write anything after the while condition because I was afraid that it would get lumped in as part of the condition.

2 Answers

You simply add a semicolon at the end of the while(condition).

do {
    whatever
}
while (condition) ;
Kelly Walsh
Kelly Walsh
3,642 Points

Thanks - I told you it was simple!

I tried various things in the task, and they all passed, so i wasn't sure.