wich looping statement in javascript ensusres that at least a single itiration will happen code example
Example: for of loop syntax javascript
for (let step = 0; step < 5; step++) {
// Runs 5 times, with values of step 0 through 4.
console.log('Walking east one step');
}