Learn localStorage by Building a Todo App - Step 52

Tell us what’s happening:

I can’t seem to get the proper syntax, might be a small typo but I don’t see it. Can you please help?

Your code so far

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

/* file: styles.css */

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

  const formInputValuesUpdated = titleInput.value !== currentTask.title ||
  dateInput.value !== currentTask.date || descriptionInput.value !== currentTask.   description;

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36

Challenge Information:

Learn localStorage by Building a Todo App - Step 52

I think this is a line break ?
they should be on the same line.

what is this space for ?

I fixed what you recommended and its telling me, " Your formInputValuesUpdated variable should check if titleInput.value is not equal to currentTask.title or dateInput.value is not equal to currentTask.date ."

Can you post your updated code?

It finally took it! Thanks for all your help! :+1:

1 Like