Introduction
Examples of interation with JavaScript. These are for discussion purposes and do NOT illustrate best practices. Instead we are using document.write() as an easy way to display outcomes, and executing JavaScript inline with the HTML.
JavaScript Iterating Over Arrays
Display Fruit in an array.
Apples
Peaches
Watermelons
Pomegranates
Display places you might find fruit.
a pie
the sky
a cup
the truck
Fruit in various places
I like Apples in a pie
I like Peaches in the sky
I like Watermelons in a cup
I like Pomegranates in the truck
Fruit in various places done a different way.
I like Apples in a pie
I like Peaches in the sky
I like Watermelons in a cup
I like Pomegranates in the truck