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 trialJorge Montava Arsis
1,648 PointsHow to re-do this program with do/while loop?
Hi, I have been asked to redo this program with do-while loop and I am stuck.
var secret = prompt("What is the secret word?"); while (secret !== "sesame") { secret = prompt("What is the secret password?") }
Thanks!
var secret = prompt("What is the secret password?");
while ( secret !== "sesame" ) {
secret = prompt("What is the secret password?");
}
document.write("You know the secret password. Welcome.");
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
2 Answers
Patrik Horváth
11,110 Points1st define var then just if secret is not "sesame run your code :)
var secret;
while ( secret !== "sesame" ) {
secret = prompt("What is the secret password?");
}
document.write("You know the secret password. Welcome.");
Jorge Montava Arsis
1,648 PointsDone it!
Thank you for your help :)