Learn localStorage by Building a Todo App - Step 68

Tell us what’s happening:

My Todo App is not working even after completing the project.
Why so?

Your code so far

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

/* file: styles.css */

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

  const taskObj = {
    id: `${removeSpecialChars(titleInput.value).toLowerCase().split(" ").join("-")}-${Date.now()}`,
    title: removeSpecialChars(titleInput.value),
    date: dateInput.value,
    description: removeSpecialChars(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/128.0.0.0 Safari/537.36

Challenge Information:

Learn localStorage by Building a Todo App - Step 68

What do you mean doesn’t work? Can you elaborate a little further?

1 Like

When I click on the “Add New Task” button, nothing comes up.

Hi @incrediblestand

Reset the step and try again. If that doesn’t work, refresh the page, disable dark mode, disable ad blockers. Or, use another browser.
If the above steps do not work, you may need to restart the computer.

Happy coding

1 Like

Thank you for the responses.

1 Like

Hi there and welcome here. If you have any questions about specific curriculum challenges, create your own topic to the challenge step using Help button. That button appears below the challenge editor when you try to submit the wrong code more than three times.

Understood sir, my apologies.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.