Contact: aviboots(AT)netvision.net.il
39,884 questions
51,810 answers
573 users
let str: string = "ab123cd"; const mid: number = Math.floor(str.length / 2); const N: number = 3; str = str.substring(0, mid - Math.floor(N / 2)) + str.substring(mid + 1 + Math.floor(N / 2)); console.log(str); /* run: "abcd" */