javascript loop code example
Example 1: javascript loop
let array = ['Item 1', 'Item 2', 'Item 3'];
array.forEach(item => {
console.log(item);
});
Example 2: javascript loop
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]);
}
Example 3: javascript loop
let array = ['Item 1', 'Item 2', 'Item 3'];
for (let index = 0; index < array.length; index++) {
console.log(array[index]);
}
for (let index in array) {
console.log(array[index]);
}
for (let value of array) {
console.log(value);
}
array.forEach((value, index) => {
console.log(index);
console.log(value);
});
Example 4: javascript loop
let array = ["foo", "bar"]
let low = 0;
let high = array.length;
for(let i = low; i < high; i++) {
console.log(i);
console.log(array[i]);
}
Example 5: javascript loop
var items=["a","b","c"];
for(let item of items){
console.log(item)
}
Example 6: javascript loop
var colors=["red","blue","green"];
for(let color of colors){
console.log(color)
}
Example 7: javascript loop
var i;
for (i = 0; i < cars.length; i++) {
text += cars[i] + "<br>";
}