2019-09-16a few seconds read (About 19 words)How to replace all occurrences of a string in JavascriptIssue #420 12345const normalized = string .replace(/\//g, '') .replace(/\"/g, '') .replace(/\(/g, '') .replace(/\)/g, '')#javascript