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

JavaScript JavaScript Loops, Arrays and Objects Simplify Repetitive Tasks with Loops Create a while Loop

JavaScript Loops, Arrays and objects challenge task 1

so the task is as follows: "In this challenge, you will create a while loop that prints to the document 26 times. We've added a variable named count, use it to track the number of times the loop runs. Don't forget to use the document.write() method inside the loop."

My question is what are we expecting to write to the document here? The question is very ambiguous in that sense.

When I try to submit my code it tells me that there is a syntax parse error, however when I run my code through the browser it works fine.

script.js
let count = 0;
while ( count < 26 ) {
  document.write(  );
  count++;
}

1 Answer

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,329 Points

While it is better to use let instead of var the challenges sometimes don’t like it when you change their code. Just change it back to var count = 0; and it will pass.

Yes that worked, thank you. I guess I'm that used to just using let and const now that I change them without thinking

Mark Sebeck
Mark Sebeck
Treehouse Moderator 37,329 Points

Yeah it seems best not to change their code unless it specifically says too. It just confuses their logic.