how can i change certain string of character in arbitary location on javascripy code example
Example: javascript string change character at index
String.prototype.replaceAt=function(index, char) {
var a = this.split("");
a[index] = char;
return a.join("");
}