Answers for "how to loop through an array that also has a string 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

how to loop through array of numbers in javascript

let numbers = [1,2,3,4,5];
let numbersLength = numbers.length;
for ( let i = 0; i < numbersLength; i++) {
    console.log (numbers[i]);
}
Posted by: Guest on March-24-2020

Code answers related to "how to loop through an array that also has a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language