Contact: aviboots(AT)netvision.net.il
41,500 questions
54,078 answers
573 users
let str = "NodeJS Python C"; const string = 'C++'; const index = 7; str = str.slice(0, index) + string + str.slice(index); console.log(str); /* run: NodeJS C++Python C */