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 trialHarrison Parker
5,284 PointsI think this challenge is broken as there is no html document to the js to print to. It says: "code took to long to run"
the challenge appears to be broken?
var count = 0;
while ( count < 26 ) {
document.write("<h1> hello </h1>");
}
2 Answers
Ryan Field
Courses Plus Student 21,242 PointsHi, Harrison. The reason you are getting this error is because the value for count
is never increased, and is therefore always under 26, causing the loop to run forever. You can add count = count + 1;
after your document.write
statement, and that should remedy your code.
Harrison Parker
5,284 PointsHi Ryan, thank you very much. That was so obvious now i feel a bit silly. But i suppose that is an inevitably part of learning to code.
Ryan Field
Courses Plus Student 21,242 PointsOh, it most certainly is! I still get caught up on things that "should" work, only to find that I've made a silly typo or some other mistake. But that's how you get better and learn, so keep it up! :)
Barry Barnes
18,631 PointsBarry Barnes
18,631 PointsThanks!