Contact: aviboots(AT)netvision.net.il
39,873 questions
51,797 answers
573 users
let str = 'c c++, typecript, python, php'; const lastIndex = str.lastIndexOf(','); str = str.slice(0, lastIndex) + str.slice(lastIndex + 1); console.log(str); /* run: "c c++, typecript, python php" */