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 trialAmber Hoddinott
6,494 Pointsmissing the code?
i am confused of what code i need to put into the code block to make the prompt continually appear until the user types in the password correctly.
var secret = prompt("What is the secret password?");
while(secret === "sesame"){
}
document.write("You know the secret password. Welcome.");
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="app.js"></script>
</body>
</html>
1 Answer
LaVaughn Haynes
12,397 PointsYou are close. You want to prompt the user over and over, so put the prompt inside the loop. The loop will run as long as the condition in the parenthesis is true, so that condition should be "the user's input is NOT EQUAL to the password". Once they entered the correct password then that condition becomes false and the loop is exited.
//define your variable secret
var secret;
//while secret IS NOT EQUAL TO "sesame"
while(secret !== "sesame"){
//prompt the user
secret = prompt("What is the secret password?");
}
//write message
document.write("You know the secret password. Welcome.");