Answers for "loop through array javascript"

48

javascript code to loop through array

var colors = ["red","blue","green"];
for (var i = 0; i < colors.length; i++) {
    console.log(colors[i]);
}
Posted by: Guest on July-22-2019
7

javascript loop through array

const myArray = ['foo', 'bar'];

myArray.forEach(x => console.log(x));

//or

for(let i = 0; i < myArray.length; i++) {
  console.log(myArray[i]);
}
Posted by: Guest on November-16-2020

Code answers related to "loop through array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language