QP School

Full Version: JavaScript - For Loop Example
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
for(let step = 0; step < 15; step++)
  {
    document.write("Making one step at a time. <br>");
  }