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

Vardas Pavarde
Vardas Pavarde
641 Points

how 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

Hello 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
Aaron HARPT
19,845 Points

Here 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.");

A do...while loop guarantees the execution of your loop at least once up to the while statement.