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 trialUnsubscribed User
3,423 PointsPrompt doesn't appear on the screen even though code is correct
I am pretty sure my code is correct but the prompt dialog doesn't appear in my browser's window, and when I run check work it tells me that my code took too long to run.
var secret = prompt("What is the secret password?");
while (secret !== "seasame") {
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="app.js"></script>
</body>
</html>
1 Answer
Jonathan Grieve
Treehouse Moderator 91,253 PointsIt sounds like what happens when you have an infinite loop is coming and the browser doesn't know how to handle it.
But the code is fine.
One thing I do notice is you need to fix the secret password string which is sesame
.
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.");
Unsubscribed User
3,423 PointsUnsubscribed User
3,423 PointsIt actually was an infinite loop issue because of a typo in the password string :/
Damn I should of noticed!
Thanks a lot