strin replace // with / code example
Example 1: replacing characters in string javascript
var myStr = 'this,is,a,test';
var newStr = myStr.replace(/,/g, '-');
console.log( newStr ); // "this-is-a-test"
Example 2: replace all javascript
str.split(search).join(replacement);