array in javascript for loop code example
Example 1: javascript loop through array
var colors = ["red","blue","green"];
colors.forEach(function(color) {
console.log(color);
});
Example 2: js loop array
let colors = ['red', 'green', 'blue'];
for (const color of colors){
console.log(color);
}