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 trialTawanda Titus Nyakudyara
9,240 PointsLoop challenge
Is there any problem with this code. Its not running
var count = 0;
while ( count < 26 ){
document.write("The num is " + count)
}
3 Answers
Dylan Glover
2,537 PointsHey Tawanda,
think you just needed count++
inside the loop to make sure it was incrementing
var count = 0;
while ( count < 26 ){
count++
document.write("The num is " + count)
}
KRIS NIKOLAISEN
54,971 Pointscount never increments so this is an infinite loop
Ben Omondi
3,522 PointsYou may have to ensure that you always increment or decrement your loops when using while.
Since you have count set at 0 and a condition saying count <26. An increment is your option here. Add count++ inside the loop