Answers for "hwo to loop through an array"

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
0

javascript loop through array

const array = [1, 2, 3, 4];

for(num of array) {
  console.log(num); 
}
Posted by: Guest on November-30-2020

Code answers related to "hwo to loop through an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language