scrimba
Note at 0:59
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:59
AboutCommentsNotes
Note at 0:59
Expand for more info
index.js
run
preview
console
const numOfGuests = document.getElementById('guests')
const btnCalculate = document.getElementById('btn')
const isVegetarian = document.getElementById('vegetarian-input')

const dinnerOption = document.getElementById('food')

btnCalculate.addEventListener('click', function(){
const guests = +numOfGuests.value
if(isVegetarian.checked){
dinnerOption.textContent = 'Winter Squash Risotto'
} else{
dinnerOption.textContent = guests <= 4 ? 'Ham' : 'Turkey'
}
numOfGuests.value = ''
})
Console
/index.html
LIVE