loop frm array html code example
Example 1: javascript loop through array
var colors = ["red","blue","green"];
colors.forEach(function(color) {
console.log(color);
});
Example 2: javascript loop through array
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));