Contact: aviboots(AT)netvision.net.il
41,500 questions
54,078 answers
573 users
let str = "typescript php c++"; const index = 2; const replacement = 'QPO'; str = str.substring(0, index) + replacement + str.substring(index + replacement.length); console.log(str); /* run: "tyQPOcript php c++" */