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!
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

Brain Station
3,849 Pointsvar secret = prompt("What is the secret password?");.
..
var secret = false;
do{
secret = prompt("What is the secret password?");
}
while ( secret !== false ) {
}
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

Jason Anders
Treehouse Moderator 145,841 PointsHey Brian,
I'm not sure what exactly your question is?

Jessica Li
9,315 PointsI used this code in the code exercise and it worked. But shouldn't the code somehow work only if "sesame" is typed in the input?