Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 answers
573 users
let str = ',javascript,typescript,node.js,python,'; str = str.replace(/(^,)|(,$)/g, ''); console.log(str); /* run: javascript,typescript,node.js,python */
let str = ',javascript,typescript,node.js,python,'; if (str.startsWith(',') && str.endsWith(',')) { str = str.slice(1, -1); } console.log(str); /* run: javascript,typescript,node.js,python */