The code is asking me to set the terminal condition of a loop

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

function countToFive() {
let firstFive = "12345";
let len = firstFive.length;
// Only change code below this line
for (let i = 0; i <= len; i++) {
// Only change code above this line
  console.log(firstFive[i]);
}
}

countToFive();



  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36.

Challenge: Catch Off By One Errors When Using Indexing

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

l am having a problem with the code its run but bring 2 errors saying

Your code should set the terminal condition of the loop so it stops at the last index.
Your code should fix the terminal condition of the loop so that it stops at 1 before the length.

Do you understand well what a terminal condition is? If not, go over the FCC challenge on for loops and see if you can figure it out: Learn Basic JavaScript: Iterate with JavaScript For Loops | freeCodeCamp.org

Also here’s the full for loop syntax: for - JavaScript | MDN (mozilla.org)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.