for loop js example

JavaScript
let array = ['Item 1', 'Item 2', 'Item 3'];

for (let index = 0; index < array.length; index++) {
  console.log("index", index);
  console.log("array item", array[index]);
}var colors=["red","blue","green"];
for(let color of colors){
  console.log(color)
}
Source

Also in JavaScript: