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.

Vardas Pavarde
641 Pointshow to solve this problem: JS do while loop
var secret = prompt("What is the secret password?");
do { prompt(); } while ( secret !== "sesame" ) document.write("You know the secret password. Welcome.");
3 Answers

lakindujayathilaka
15,244 PointsHello friend. Converting code inside a while loop to a do-while loop is pretty sweet and simple
var secret;
do {
secret = prompt("What is the secret password?");
} while ( secret !== "sesame" );
document.write("You know the secret password. Welcome.");
First u have to cut 'while(secret !== "sesame")' from the top and place it AFTER the closing curly brace. Then put the word 'do' before the opening curly brace. and WALA! u have a do-while loop!
Mark my answer as the best if i managed to help u

Aaron HARPT
19,845 PointsHere is the code that worked for me:
var secret; do { sesame = prompt("What is the secret password?"); } while ( secret !== "sesame") document.write("You know the secret password. Welcome.");

Craig Garner
25,732 PointsA do...while loop guarantees the execution of your loop at least once up to the while statement.