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 while loops, do...while loops, and Loop Conditions

Explaining the outcome of a JavaScript cod

There is this code in the quiz:

do {
  console.log('Hello');
} while (false)
console.log('Goodbye');

The question was: what is the outcome of this code? My answer was Hello. It was wrong because it's saying that Goodbye is printed one time as well. I didn't understand why Goodbyeis printed. Can you explain why?

1 Answer

Steven Parker
Steven Parker
229,732 Points

The "Goodbye" is not part of any loop or conditional.

You did good spotting that because it's a "do" style loop, the "Hello" gets printed one time even though the condition is false.

But the "Goodbye" message comes after the loop, so no matter what happens in the loop, it will be printed last.

I got that.. Many thanks!