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 trialGena Israel
2,047 Pointsnot sure what to put in the brackets to
i think i did first two lines correct, should i be putting count into the brackets to write out on document.write
var count = 0;
while (count<26) {
console.log()
document.write()
}
1 Answer
Mike Wagner
23,559 PointsLooks like you should be using document.write()
by itself, so you can remove the console.log()
probably. You'll definitely need to finish your JS lines with a semicolon :) And, it looks like the challenge wants document.write()
to be called while( count < 26 )
so you'll have to increment count after each call to document.write()
, otherwise it will turn into an infinite loop :)