Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 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++ */