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 Working with 'for' Loops Terminate a Loop

Please Help. I am stuck

I have been stuck on this a while, Can you please help?

script.js
for ( let i = 1; i < message; i++ ) {
  if ( i === message / 2 ) {
    console.log('The loop has terminated...');
    break;
  } 
  console.log(`Logging the number ${i}`);
}

console.log('The program continues...');

1 Answer

Simon Coates
Simon Coates
8,177 Points

I'm pretty sure it let me pass the challenge by putting the break statement in that location. I used:

let message = "supercalifragilisticexpialidocious";
message = message.length;

for ( let i = 1; i < message; i++ ) {
  if ( i === message / 2 ) {    
    console.log('The loop has terminated...');
    break;    
  }
  console.log(`Logging the number ${i}`);
}

console.log('The program continues...');
Adam Cessna
seal-mask
.a{fill-rule:evenodd;}techdegree
Adam Cessna
Full Stack JavaScript Techdegree Student 9,917 Points

As Simon mentioned above, the break statement where you and Simon both have it should be correct. I just tried it to confirm and it worked. See if you accidentally made a typo to the message variable. Hope you figure it out!