scrimba
Note at 0:47
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 0:47
AboutCommentsNotes
Note at 0:47
Expand for more info
index.js
run
preview
console
/* Challenge 2: Breakfast Menu
- Topic: .map()
Our restaurant menu currently only shows the breakfast menu,
as it has been hard coded into the HTML file. However, we want
to offer a dinner menu instead. Let's fix this using .map()

1. First, fetch a reference to the menu <section> from the DOM.
2. Set the innerHTML content of the menu <section> to...
3. the dinnerFoods array by mapping over the array and returning
the following div for each food in the array:
`<div class="food">FOOD VALUE HERE</div>`
4. Remember to remove any separating commas between the food divs!
*/

const dinnerFoods = ['🍝','🍔','🌮'];

const menu = document.getElementById("menu");

menu.innerHTML = dinnerFoods.map(item => `<div class="food">${item}</div>`).join('');
Console
/index.html
LIVE