js string change character code example

Example 1: js replace characters in a string

var str = "Original string!";
var str = str.replace("Original", "New");

Example 2: javascript regex replace

const search = 'duck'
const replaceWith = 'goose';

const result = 'duck duck go'.replaceAll(search, replaceWith);

result; // => 'goose goose go'

Example 3: javascript string change character at index

String.prototype.replaceAt=function(index, char) {
    var a = this.split("");
    a[index] = char;
    return a.join("");
}