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 A Closer Look At Loop Conditions

Prompt 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.

app.js
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.");
index.html
<!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
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

It 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.");

It actually was an infinite loop issue because of a typo in the password string :/

Damn I should of noticed!

Thanks a lot