javacript string add space after commas

Solutions on MaxInterview for javacript string add space after commas by the best coders in the world

showing results for - "javacript string add space after commas"
Candy
12 Jan 2017
1"1,2, 3,4,5".replace(/,(?=[^\s])/g, ", ");
2> "1, 2, 3, 4, 5"
3