for loops javascript array code example
Example 1: javascript code to loop through array
var colors = ["red","blue","green"];
for (var i = 0; i < colors.length; i++) {
console.log(colors[i]);
}
Example 2: js loop array
let colors = ['red', 'green', 'blue'];
for (const color of colors){
console.log(color);
}
Example 3: loop array in javascript
var colors = ["red", "green", "blue"];
for(var i = 0; i < colors.length; i++){
console.log(colors[i]);
}