function ch(pos,char,str) { return str.slice(0,pos)+char+str.slice(str.length-pos-1) } alert(ch(2,'a','hello'));