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 trialNick Davies
7,972 PointsA closer look at loop conditions - Challenge
I have been stuck on this challenge now for just over a day. I feel we have not learnt the skills to complete this challenge.
Please could someone advise me of what I am missing/doing wrong?
var secret = prompt("What is the secret password?");
var sesame;
while (secret !== sesame){
secret = prompt ("That's not the right password")
}
document.write("You know the secret password. Welcome.");
1 Answer
Nick Davies
7,972 PointsI figured it out in the end... I was missing "" around sesame.
while (secret !== "sesame") { secret = prompt("That's the wrong password"); }