Tell us what’s happening:
How do i overcome this? Im trying to follow instructions just how it directed me to.
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
const taskObj = {
id: `${titleInput.value.toLowerCase().split(" ").join("-")}-${Date.now()}`,
title: titleInput.value,
date: dateInput.value,
description: descriptionInput.value,
};
removeSpecialChars(taskObj.id)
removeSpecialChars(taskObj.title)
removeSpecialChars(taskObj.description)
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:132.0) Gecko/20100101 Firefox/132.0
Challenge Information:
Learn localStorage by Building a Todo App - Step 68