Answers for "loopt trough array"

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
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 "Javascript"

Browse Popular Code Answers by Language