The most common type of for loop, it includes three parts: initialization, condition, and iteration.

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