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 Create a `do...while` loop

c

I don't understand this code

script.js
var secret = prompt("What is the secret password?");
do( secret !== "sesame" ) {
  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="script.js"></script>
</body>
</html>

1 Answer

Walter Allen
seal-mask
.a{fill-rule:evenodd;}techdegree
Walter Allen
iOS Development with Swift Techdegree Student 16,023 Points

Here's the plain language version of what this code is doing:

Declare a variable secret that stores the user-entered value when it prompts the user "What is the secret password?" If the variable secret (now the user's information) does not equal "sesame", Prompt the user again ("What is the secret password?") and go back to the beginning of the variable check (one line up)

(Once the variable secret does equal "sesame"), write "You know the secret password. Welcome."

Does that help?