js replace string by another code example
Example 1: replace all occurrences of a string in javascript
const p = 'dog dog cat rat';
const regex = /dog/gi;
console.log(p.replace(regex, 'cow'));
//if pattern is regular expression all matches will be replaced
//output: "cow cow cat rat"
Example 2: replace each string by another string javascript
str.split(search).join(replacement)