hwo to loop through an 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: javascript loop through array
const array = [1, 2, 3, 4];
for(num of array) {
console.log(num);
}