Answers for "how to loop the array again and again in javascript"

72

javascript loop thrugh 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

iterate through array javascript without loop

var txt = "";
var numbers = [45, 4, 9, 16, 25];
numbers.forEach(myFunction);

function myFunction(value, index, array) {
  txt = txt + value + "<br>";
}
Posted by: Guest on May-28-2020

Code answers related to "how to loop the array again and again in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language