javascript replace string with array code example
Example 1: how to use the replace method in javascript
let string = 'soandso, my name is soandso';
let replaced = string.replace(/soandso/gi, 'Dylan');
console.log(replaced); //Dylan, my name is Dylan
Example 2: str replace javascript all
str.replace(/abc/g, '');