javascript print array with for loop code example
Example: javascript loop and array
var array = ["hello","world"];
array.forEach(item=>{
console.log(item);
});
var array = ["hello","world"];
array.forEach(item=>{
console.log(item);
});