Answers for "looping through list 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
1

javascript best way to loop through array

var len = arr.length;
while (len--) {
    // blah blah
}
Posted by: Guest on March-25-2020

Code answers related to "looping through list javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language