array for loop javascript code example

Example 1: javascript for loop

var colors=["red","blue","green"];
for (let i = 0; i < colors.length; i++) { 
  console.log(colors[i]);
}

Example 2: javascript code to loop through array

var colors = ["red","blue","green"];
for (var i = 0; i < colors.length; i++) {
    console.log(colors[i]);
}

Example 3: loop array javascript

var colors = ['red', 'green', 'blue'];
	
	colors.forEach((color, colorIndex) => {
     console.log(colorIndex + ". " + color); 
    });

Example 4: js loop array

let colors = ['red', 'green', 'blue'];
for (const color of colors){
    console.log(color);
}

Example 5: javascript array loop

const friends = [
   `Dale`,
   `Matt`,
   `Morne`,
   `Michael`,
];

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

Example 6: loop array in javascript

var colors = ["red", "green", "blue"];
for(var i = 0; i < colors.length; i++){
	console.log(colors[i]);
}

Tags:

Java Example