loop trough array nodejs code example
Example 1: javascript code to loop through array
var colors = ["red","blue","green"];
for (var i = 0; i < colors.length; i++) {
console.log(colors[i]);
}
Example 2: js loop through array
for (const color of colors){
console.log(color);
}
const array = ["one", "two", "three"]
array.forEach(function (item, index) {
console.log(item, index);
});
for (var i = 0; i < arrayLength; i++) {
console.log(myStringArray[i]);
}
Example 3: iterate through array js
let arbitraryArr = [1, 2, 3];
for (let arbitraryElementName of arbitraryArr) {
console.log(arbitraryElementName);
}
Example 4: javascript best way to loop through array
var len = arr.length;
while (len--) {
}