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 trialklongangelespinca
8,535 Pointsjavascript while loops
What's wrong with my code?
var secret = prompt ("What is the secret password?");
while (secret !== "sesame") {
prompt ("What is the secret password?");
}
document.write ("You know the password. Welcome.");
2 Answers
Marc Schultz
23,356 PointsThe error says:
Bummer! You need to assign a new value to the secret
variable inside the loop.
Inside the loop you have this:
prompt ("What is the secret password?");
This is correct, but the variable secret
will not be set again.
Collin Perkins
8,811 PointsYou need to reset the secret variable to the prompt.
secret = prompt("What is the secret password?");