Not sure where to start?
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
/review
Karma
scrimba
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 = ''})