Tell us what’s happening:
I dons have this… Puede que se un problema de traduccion … no lo sé alguien podria ayudarme con un ejemplo en codigo
const taskObj = {
id: removeSpecialChars(titleInput.value),
title: removeSpecialChars(titleInput.value),
date: removeSpecialChars(dateInput.value),
description: removeSpecialChars(descriptionInput.value),
};
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
const taskObj = {
id: removeSpecialChars(titleInput.value),
title: removeSpecialChars(titleInput.value),
date: removeSpecialChars(dateInput.value),
description: removeSpecialChars(descriptionInput.value),
};
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36
Challenge Information:
Learn localStorage by Building a Todo App - Step 68