VertitimeX Technologies

Javascript For Loop.

For Loops offer a quick and easy way to do something repeatedly.
    for (let step = 0; step < 6; step++) {
        // Runs 6 times, with values of step 0 through 6.
  console.log("Walking east one step");
}