Learn localStorage by Building a Todo App - Step 36

Tell us what’s happening:

This is my code:

const addOrUpdateTask = () => {
dataArrIndex ()
taskObj ()
if ()
}

I have tried error checking and placing “dataArrIndex” inside the function and it didn’t work.

Can anyone please help and/or direct me on the right track?

Thanking you.

Your code so far

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

/* file: styles.css */

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

const addOrUpdateTask = () => {
  dataArrIndex ()
  taskObj ()
  if () 
  }


// 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/135.0.0.0 Safari/537.36

Challenge Information:

Learn localStorage by Building a Todo App - Step 36

Hi @fitzgeraldp

Use arrow syntax to create an addOrUpdateTask function. Then move the dataArrIndex variable, the taskObj object, and the if statement into the addOrUpdateTask function.

For this step you need to select existing code, then cut and place it into the arrow function.

Happy coding