Contact: aviboots(AT)netvision.net.il
39,854 questions
51,775 answers
573 users
let str = 'node.js,c,c++,python,'; str = str.replace(/,*$/, ''); console.log(str); /* run: node.js,c,c++,python */
let str = 'node.js,c,c++,python,'; if (str.endsWith(',')) { str = str.slice(0, -1); } console.log(str); /* run: node.js,c,c++,python */