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

Nazeim Brame
Nazeim Brame
6,544 Points

I NEED HELP TELLING ME TO REWATCH THE VIDEO IS NOT WORKING. WHAT DO I NEED TO DO?

The question is unclear and the hints are unclear. Any feedback I've gotten is generic and just says to rewatch the video. I literally DO NOT understand how to do it. If someone could correct my code or show me where I'm going wrong that would be a huge help.

script.js
var secret = prompt("What is the secret password?");
do {
   secret = prompt("What is the secret password?");
   prompt("What is the secret password?");
} while ( secret !== "sesame" ) 
  document.write("You know the secret password. Welcome.");
index.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>

1 Answer

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,341 Points

It would work in real live the way you have it but it would ask the user multiple times for the password and only check it once. Just remove two of the prompts like this:

var secret = "";
do {
   secret = prompt("What is the secret password?");

} while ( secret !== "sesame" ) 
  document.write("You know the secret password. Welcome.");

Sometimes the challenges are frustrating because you can't see the output. I will sometimes set them up in workspaces so I can actually see the output if I am stuck.