const insert = (str, index, ch) =>
str.replace(RegExp(`(?<=.{${index}})`), ch);
// или
const insert = (str, index, ch) =>
str.replace(RegExp(`.{${index}}`), `$&${ch}`);
// или
const insert = (str, index, ch) =>
str.length >= index ? str.slice(0, index) + ch + str.slice(index) : str;