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 Review while loops, do...while loops, and Loop Conditions

michael edmondson
michael edmondson
4,510 Points

I was trying to complete this task for the java script track and i just couldnt figure it out.

Finish the code in this do/while loop, so that the following lines are output to the console:

1

3

5

7

9

11

13

15

var x = 1;

do { console.log('#' + ); x += ; } while ( x <= 15 )

2 Answers

Emmanuel C
Emmanuel C
10,636 Points
var x = 1;
 __{ //First keyword of do while loop
  console.log('#' + _); //print the variable name that holds the number 
  x += _ ; //What number is being added to get the next number
}  _____( x <= 15 )// last keyword in do while loop

Hopefully this should help. If not leave a comment or question.

var x = 1; do { console.log('#' + 14); x += 1; } while ( x <= 15 )

Need help?