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 trialVardas 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
sizwengubane
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.