Learn localStorage by Building a Todo App - Step 67

Tell us what’s happening:

Task is to create function that removes special characters.What is wrong?

Your code so far

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

/* file: styles.css */

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

 function removeSpecialChars(str){return str.replace("!"||"@"||"#"||"$"||"%"||"^"||"&"||"*"||"("||")"||"_"||"-"||"+"||"="||"{"||"}"||"["||"]"||";"||":"||'""'||"''"||"<"||">"||","||"."||"?"||"/"|| '|'||'~'||"/t"||"\n"||"\t"||"\\"||'\"'||"+"||"-"||"*"||"/"||"="||"^"||"√"||"$"||"€"||"£"||"¥"||"©"||"®"||"∞"||"☺"||"'"||'"');}

// 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 Edg/135.0.0.0

Challenge Information:

Learn localStorage by Building a Todo App - Step 67

That’s not the correct syntax for the String.replace()method. You can use a regular expression though.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace