how to replace all in string javascript code example
Example 1: js string replaceall
str.replaceAll(val, replace_val);
str.replace(/val/g, replace_val);
Example 2: replace all js
let a = 'a a a a aaaa aa a a';
a.replace(/aa/g, 'bb');
Example 3: str replace javascript all
str.replace(/abc/g, '');
Example 4: how to replace all the string in javascript when the string is javascript variable
function name(str,replaceWhat,replaceTo){
replaceWhat = replaceWhat.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
var re = new RegExp(replaceWhat, 'g');
return str.replace(re,replaceTo);
}