Skip to content

Files

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Latest commit

author
name
Sep 12, 2022
58db693 · Sep 12, 2022

History

History
11 lines (8 loc) · 249 Bytes

looping.md

File metadata and controls

11 lines (8 loc) · 249 Bytes

#Looping

With Looping, you can access any point in an array with an increment, making you go through every item in the array.

var array = [1, 2, 3, 4, 5]; 

for (let i = 0; i < array.length(); i++)
{
    console.log(array[i]); 
}