replace all instances of string from string js code example
Example 1: js replace all substrings
/// replace "abc" with "" (blank string)
str.replace(/abc/g, '');
Example 2: 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);
}