Is there anyway to remove HTML letters, numbers, special characters, etc. with JavaScript?
For instance: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Is there a way to make every usage of, for example, the letter ‘e’ from that sentence with JavaScript?
You could use replace() method:
First argument can be a regex as well to make it more complex if needed.