Learn localStorage by Building a Todo App - Step 34

Tell us what’s happening:

closeTaskForm.addEventListener(“click”, () => {
const formInputsContainValues = titleInput.value || dateInput.value || descriptionInput.value;

});
i been stuck at this step for days someone help

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

closeTaskForm.addEventListener("click", () => {
      const formInputsContainValues = titleInput.value || dateInput.value || descriptionInput.value;
    
});

  


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36

Challenge Information:

Learn localStorage by Building a Todo App - Step 34

What is the variable you have written doing?

Take it in stages.

What can you write to check if the user has input any value into the titleInput, dateInput or description input fields?

What syntax can you use to check if a condition is met?

Once you have done that you can move onto the last paragraph instructions. Can you explain in your own words what the last paragraph is asking for and how you can write this?