Answers for "loop thorugh array javascript .each"

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
6

loop through array javascript

/* ES6 */
const cities = ["Chicago", "New York", "Los Angeles"];
cities.map(city => {
	console.log(city)
})
Posted by: Guest on January-04-2020

Code answers related to "loop thorugh array javascript .each"

Code answers related to "Javascript"

Browse Popular Code Answers by Language