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 trialRazvan Tamasanu
1,873 PointsDo while
I am stuck...don t know how to fix it. The code should write on the screen a message when the word entered in prompt is sesame .
var secret = prompt("What is the secret password?");
do{document.write("You know the secret password. Welcome.")
}
while ( secret !== "sesame" )
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer
Eric M
11,546 PointsHi Razvan,
Your loop as written will write "You know the secret password. Welcome." each time its run. It will run until secret is equal to seasame, but there's nothing else there! You need to provide a way for the loop to end.
Firstly, we should probably only say "You know the secret password. Welcome." after the loop, so let's move that down there.
Now our loop is empty. Inside, let's prompt for the password. We'll keep the variable declaration outside the loop though so that it doesn't need to be recreated each time the loop runs.
var secret;
do
{
secret = prompt("What is the secret password?");
} while ( secret !== "sesame" )
document.write("You know the secret password. Welcome.");
Razvan Tamasanu
1,873 PointsRazvan Tamasanu
1,873 PointsThank you Eric!