How to loop through array in Javscript?
javascript loop through array
var data = [1, 2, 3, 4, 5, 6];
// traditional for loop
for(let i=0; i<=data.length; i++) {
console.log(data[i]) // 1 2 3 4 5 6
}
// using for...of
for(let i of data) {
console.log(i) // 1 2 3 4 5 6
}
javascript loop through array
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));