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 trialTomas Baca
3,578 PointsCode Challenge error
What s wrong in this code???
var secret = prompt("What is the secret password?");
do
{
secret = prompt("What is the secret password?");
}
while ( secret === "sesame" )
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>
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! You're really close here so I'm going to give a few hints. When declaring the secret
variable, you do not need to prompt the user right then. You can set this as an empty string and then use the loop to issue the prompt to get the value of secret
. Also, you have a logic flaw. The while condition is going to run the loop while the word the user typed in is equal to "sesame". You need it to run while it's not equal to sesame.
Give it another go with these hints in mind, but let me know if you're still stuck!