Contact: aviboots(AT)netvision.net.il
38,901 questions
50,606 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++" */