remove all non-alphanumeric characters (punctuation spaces and symbols) javascript code example
Example: remove non alphanumeric characters javascript
input.replace(/\W/g, '') //doesnt include underscores
input.replace(/[^0-9a-z]/gi, '') //removes underscores too