Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
let str = "typescript php java c++"; const index = 3; const replacement = 'UVW'; str = str.substring(0, index) + replacement + str.substring(index + replacement.length); console.log(str); /* run: "typUVWript php java c++" */