Contact: aviboots(AT)netvision.net.il
42,689 questions
55,440 answers
573 users
let str = "node.js php python c++"; const index = 2; const replacement = 'RGBA'; str = str.substring(0, index) + replacement + str.substring(index + replacement.length); console.log(str); /* run: noRGBAs php python c++ */