loop through array javascript and parse to int code example
Example 1: javascript loop through array
let array = ['Item 1', 'Item 2', 'Item 3'];
for (let item of array) {
console.log(item);
}
Example 2: js loop through array
// ES6 for-of statement
for (const color of colors){
console.log(color);
}
// Array.prototype.forEach
const array = ["one", "two", "three"]
array.forEach(function (item, index) {
console.log(item, index);
});
// Sequential for loop
for (var i = 0; i < arrayLength; i++) {
console.log(myStringArray[i]);
//Do something
}