for loop through list javascript code example
Example 1: iterate array in javascrpt
let array = [ 1, 2, 3, 4 ]; //Your array
for( let element of array ) {
//Now element takes the value of each of the elements of the array
//Do your stuff, for example...
console.log(element);
}
Example 2: javascript loop and array
var array = ["hello","world"];
array.forEach(item=>{
console.log(item);
});