Skip to content

Latest commit

 

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]); 
}