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

General Discussion

No feedback when I do a code challenge.

Hi. I just started the tech degree and encountered my first code challenges: create a while loop and create a do...while loop.

When I click on "check work," the button greys out and says "working..." After several seconds the button becomes active again with "check work". I get no message about whether or not my code was successful. There is also no "continue" button.

I updated my chrome browser and I still get the same result.

Thanks!

// Create a while loop that logs the current value of count to the console 26 times
let count = 0;
while (count < 26) {
  console.log(count);
  count++;
}

// Display the prompt dialogue while the value assigned to `secret` is not equal to "sesame"
do {
let secret = prompt("What is the secret password?");
} while (secret != "sesame");

3 Answers

Hi Avalynn! Typically when that happens, it's a connection issue with the network being used. If you continue to see that happen, we recommend to restart your router and/or try a different network or VPN to rule out any connection issues. Please feel free to also reach out to us at help@teamtreehouse.com for any additional help troubleshooting!

The network is not problematic.

I switched to an incognito window and it worked fine. I now recognize it as part of a pattern of problems I've been having with multiple sites. Maybe there is an internet setting in chrome that I need to adjust.

Thank you, Kara!

Thanks for the update, Avalynn! Incognito Mode will disable your plugins, so it sounds like one is blocking it from working. Typically, it's a pop-up blocker, but hard to say without trial and error to test on your browser. I'm glad to hear that there's at least a workaround for now!