looping in 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: how to use for loops to work with array in javascript
let myArray = ["one", "two", "three", "four"];