Answers for "The kind of loop used to iterate over elements of an array"

1

Iterate Through an Array with a For Loop

var arr = [10, 9, 8, 7, 6];
for (var i = 0; i < arr.length; i++) {
   console.log(arr[i]);
}
Posted by: Guest on December-22-2020
0

loop over an array

let fruits = ['Apple', 'Banana'];

fruits.forEach(function(item, index, array) {
  console.log(item, index);
});
// Apple 0
// Banana 1
Posted by: Guest on November-22-2020

Code answers related to "The kind of loop used to iterate over elements of an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language