javascript string replaceAll code example
Example 1: js string replaceall
// Chrome 85+
str.replaceAll(val, replace_val);
// Older browsers
str.replace(/val/g, replace_val);
Example 2: 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 3: str replace javascript all
str.replace(/abc/g, '');
Example 4: javascript replaceall
//as of August 2020, not supported on older browsers
str.replaceAll("abc","def")