Answers for "is it easy to iterate over the items in an array."

1

create a loop that runs through each item in an array

Create a loop that runs through each item in the "fruits" array.

var fruits = ['Apple', 'Banana', 'Orange']

for(x of fruits){
	console.log(x);
}
Posted by: Guest on June-10-2021
0

JS iterate over an array

const beatles = ["paul", "john", "ringo", "george"];

beatles.forEach((beatle) => {
  console.log(beatle.toUpperCase());
});
Posted by: Guest on September-15-2021

Code answers related to "is it easy to iterate over the items in an array."

Browse Popular Code Answers by Language