Answers for "loop through 3 arrays javascript"

8

javascript loop through array

let array = ['Item 1', 'Item 2', 'Item 3'];

for (let item of array) {
  console.log(item);
}
Posted by: Guest on June-01-2020
7

iterate through array javascript

const array = ["one", "two", "three"]
array.forEach(function (item, index) {
  console.log(item, index);
});
Posted by: Guest on May-31-2020

Code answers related to "loop through 3 arrays javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language