how to replace javascript = code example
Example 1: javascript replace
var res = str.replace("find", "replace");
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);
Example 3: replace javascript
let newText = startText.replace("yes", "no")
console.log(newText)
newText = startText.replace(/yes/g, "no")
console.log(newText)
newText = startText.replace(/yes/gi, "no")
console.log(newText)