JasonVines / Boy-Bands

Boy Bands and Vegetables

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Boy Bands and Vegetables

Requirements

Paste the following code into the of the HTML file.

Paste the following code into your JavaScript file.

var bands = ["Boyz II Men", "NSync", "New Kids on the Block", "98 Degrees", "One Direction"]; var vegetables = ["Carrots", "Kale", "Zucchini", "Broccoli", "Squash"];

// The number of loops to perform (what if the array changes?) var loopCount = 5;

// Keep track of which band we're on in the loop var currentBand = "";

// Keep track of which veggie we're on in the loop var currentVeggie = "";

// Get a reference to the appropriate DOM element for bands var bandElement = document.getElementById(???);

// Get a reference to the appropriate DOM element for vegetables var veggieElement = ???;

// Start looping for (var loopTracker = 0; loopTracker < loopCount; loopTracker += 1) {

// Add the band names into the correct

currentBand = ???;

// Add the veggie names into the correct

currentVeggie = ???;

} Loop through the two arrays provided (bands and vegetables) and output each element in the arrays into their corresponding HTML

element. Ensure that each item is in a block element (e.g. li, div, p. etc...)

About

Boy Bands and Vegetables


Languages

Language:JavaScript 83.9%Language:HTML 16.1%