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 Create a `do...while` loop

Fernando Arias
Fernando Arias
3,139 Points

I seem to be stuck on this do.. while loop challenge.. Can someone please be of assistance?

I seem to be stuck with the do while loop challenge. Please help ?

3 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

The code is all there already it just needs to be reordered. Take a look:

var secret;
do {
  secret = prompt("What is the secret password?");    
} while ( secret !== "sesame" );
document.write("You know the secret password. Welcome.");

First we declare secret but give it no value. Then we start our do while loop and we keep asking the user for the secret password until they type "sesame". When they do type the correct password we write a welcome message to the document. Hope this helps!

Fernando Arias
Fernando Arias
3,139 Points

Ah! PERFECT, I was over complicating it! Thank you.

Fernando Arias
Fernando Arias
3,139 Points

Ah! PERFECT, I was over complicating it! Thank you.