Tell us what’s happening:
I’m unable to get my code to pass, but I can’t tell where I"m going wrong. Based on other solutions I think my syntax is right, but the bracket contents I"m not so sure about. Thanks in advance!
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
const removeSpecialChars = ((str) => {
str.replace(/[^a-zA-Z0-9\s]/g,'');
});
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36
Challenge Information:
Learn localStorage by Building a Todo App - Step 67