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