how to make a replace all function in js code example
Example 1: js string replaceall
// Chrome 85+
str.replaceAll(val, replace_val);
// Older browsers
str.replace(/val/g, replace_val);
Example 2: str replace javascript all
str.replace(/abc/g, '');