JavaScript For Loops Explained Simply
A for loop creates a loop with three optional expressions; enclosed in parentheses and separated by semicolons, followed by a statement (usually a block statement) to be executed within the loop.
const lessons = ["Variables", "Functions", "Arrays"];
for (let index = 0; index < lessons.length; index++) {
const number = index + 1;
console.log(number + ". " + lessons[index]);
} AI panel
Ask AI to clarify the parts you don’t fully understand, or go more in depth with MDN documentation.