javascript array for code example
Example 1: loop through an array javascript
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 2: loop an array in javascript
let array = ["loop", "this", "array"];
for (let i = 0; i < array.length; i++) {
console.log(array[i]);
}
Example 3: for array javascript
let iterable = [10, 20, 30];
for (let value of iterable) {
value += 1;
console.log(value);
}
Example 4: access index of array javascript
let first = fruits[0]
let last = fruits[fruits.length - 1]
Example 5: iterate array javascript
arr.forEach(function callback(currentValue [, index [, array]]) {
}[, thisArg]);