for
Description
The for of Iterations for JS iterates a loop while the condition is true.
It is similar to a while statement but has different syntax.
Syntax
for(variable; condition; increment) { code }
The for of Iterations for JS iterates a loop while the condition is true.
It is similar to a while statement but has different syntax.
for(variable; condition; increment) { code }