Answers for "how to run through array of numbers"

7

javascript loop through array

const myArray = ['foo', 'bar'];

myArray.forEach(x => console.log(x));

//or

for(let i = 0; i < myArray.length; i++) {
  console.log(myArray[i]);
}
Posted by: Guest on November-16-2020

Code answers related to "how to run through array of numbers"

Code answers related to "Javascript"

Browse Popular Code Answers by Language