Javascript String Alterar caractere no índice
String.prototype.replaceAt=function(index, char) {
var a = this.split("");
a[index] = char;
return a.join("");
}
ProMikeSundays