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 trialArielle Saporta
1,415 PointsI'm not sure what's wrong.
I can't seem to figure out what's wrong with my code.
var secret = prompt("What is the secret password?");
while (secret !== "sesame") {
prompt("try again");
}
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>
2 Answers
Sharina V. Jones
11,459 PointsYou're prompting for the user to enter a new password, but you're not reading it into a variable. Try:
while (secret !== "sesame") {
secret =prompt("try again");
}
Marcus Parsons
15,719 PointsHey Arielle,
Remember that you have to reset the value of secret
each time to the new prompt in the while loop otherwise there is no way that secret
can change. So just set secret
equal to that prompt inside the while loop :)
var secret = prompt("What is the secret password?");
while (secret !== "sesame") {
secret = prompt("try again");
}
document.write("You know the secret password. Welcome.");