Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Unsubscribed User
3,436 PointsExplaining 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 Goodbye
is printed. Can you explain why?
1 Answer

Steven Parker
221,309 PointsThe "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.
Unsubscribed User
3,436 PointsUnsubscribed User
3,436 PointsI got that.. Many thanks!