Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 160 Bytes

for.md

File metadata and controls

11 lines (8 loc) · 160 Bytes

For

Run part of the program the number of times you say using an index variable.

for(let i = 0; i <= 4; ++i) {
    let j = i;
}

#examples