Answers for "array loop methods js"

69

js loop 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 array loop

const array = ["one", "two", "three"]
array.forEach(function (item, index) {
  console.log(item, index);
});
 Run code snippet
Posted by: Guest on October-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language