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 for Loop

sami thakur
sami thakur
970 Points

not sure how to do this :/

i took a break of a few days and i forgot this sort of a loop, any help?

script.js
for(var = ding; ding < 156; ding+=1){
console.log(ding);
}

1 Answer

Steven Parker
Steven Parker
229,732 Points

Check the syntax for declaring a variable (used in the first loop clause). You have "var = variable_name", but it should be "var variable_name = initial_value". So assuming you want to start with 0:

for (var ding = 0; ding < 156; ding += 1) {