Hi! I need assessment for Conditional Test 1. If I wrote the code right - somehow.
Hello Reynante_Villalonja, your conditional checks are OK, but you have to declare the variables season
and response
before using them: add the following two lines at the very top of your script:
let season = 'summer';
let response;
Furthermore, you have to add this line just below the comment saying βDonβt edit the code below here!β:
let section = document.querySelector('section');
otherwise the response is not displayed.
1 Like