Published
- 1 min read
remove comma from end of string javascript
The solution for this is noted below
remove comma from end of string javascript
Solution
string.replace(/,\s*$/, '')
Try other methods by searching on the site. That is if this doesn’t work