string replace character a with t and character t with a in js code example
Example 1: js replace characters in a string
var str = "Original string!";
var str = str.replace("Original", "New");
Example 2: javascript string change character at index
String.prototype.replaceAt=function(index, char) {
var a = this.split("");
a[index] = char;
return a.join("");
}
Example 3: string one char change in typescript
let hello:string = "Hello World";
console.log(hello.replaceAt(2, "!!")); // Should display He!!o World