remove last comma from string javascript code example
Example 1: javascript remove last character from string
const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
Example 2: remove last comma from string javascript
str = str.replace(/,\s*$/, "");