OneBite.Dev - Coding blog in a bite size

do a for loop in Javascript

Code snippet on how to do a for loop in Javascript

  for (let i = 0; i < 10; i++) {
    console.log(i);
  }

This code is a for loop in Javascript. The loop is used to execute a set of statements multiple times until the specified condition is false. At the start of this code, we have created a variable called “i” with a value of 0. The loop will execute until the value of “i” is less than 10. Each time the loop executes, it will output the value of “i” to the console before incrementing it by 1. After each iteration, it will check the condition again and if it is still true, the loop will execute again. Once it is false, the loop will stop.

javascript