go through array javascript code example
Example 1: javascript loop through array
var data = [1, 2, 3, 4, 5, 6];
for(let i=0; i<=data.length; i++) {
console.log(data[i])
}
for(let i of data) {
console.log(i)
}
for(let i in data) {
console.log(i)
console.log(data[i])
}
data.forEach((i) => {
console.log(i)
})
data.map((i) => {
console.log(i)
})
Example 2: iterate through list javascript
const array = ["hello", "world"];
for (item of array) {
}
Example 3: how to iterate array in javascript
array = [ 1, 2, 3, 4, 5, 6 ];
for (let i = 0; i < array.length ;i++) {
array[i]
}
Example 4: how to loop through array of numbers in javascript
let numbers = [1,2,3,4,5];
let numbersLength = numbers.length;
for ( let i = 0; i < numbersLength; i++) {
console.log (numbers[i]);
}
Example 5: iterate through array js
let arbitraryArr = [1, 2, 3];
for (let arbitraryElementName of arbitraryArr) {
console.log(arbitraryElementName);
}