for loop through list js 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: iterate through list javascript
const array = ["hello", "world"];
for (item of array) {
//DO THIS
}