Answers for "loop through array and display html"

48

html loop through array

var colors = ["red","blue","green"];
for (var i = 0; i < colors.length; i++) {
    console.log(colors[i]);
}
Posted by: Guest on July-22-2019

Code answers related to "loop through array and display html"

Code answers related to "Javascript"

Browse Popular Code Answers by Language