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 trialUnsubscribed 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
231,269 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!