Learn localStorage by Building a Todo App - Step 68

Tell us what’s happening:

const taskObj = {
id: removeSpecialChars(${titleInput.value.toLowerCase().split(" ").join("-")}-${Date.now()}),
title: titleInput.value,
date: dateInput.value,
description: descriptionInput.value
};
pls i have trouble running the code

Your code so far

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

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

  const taskObj = {
    id: removeSpecialChars(`${titleInput.value.toLowerCase().split(" ").join("-")}-${Date.now()}`),
    title: titleInput.value,
    date: dateInput.value,
    description: descriptionInput.value
  };

// User Editable Region
/* file: styles.css */

Your browser information:

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

Challenge Information:

Learn localStorage by Building a Todo App - Step 68

What did the hint tell you after you entered that? The hint should help you complete the first one and then you can move on to doing the same thing to update the title property and the description property. You are nearly there on the first one.

A hint on the first one, you have put the function call around the entire string in backticks. You put it around a variable value.

Welcome to the forum @ogbonnavivi123

Here is a recent post you may find helpful.

Happy coding