replace for string in javascript code example
Example 1: javascript replace string
var str = "JavaScript replace method test";
var res = str.replace("test", "success");
//res = Javscript replace method success
Example 2: javascript replace
var text = "Sentence with old text"
alert( text.replace("old text", "new text") ); // Sentence with new text