javascript-number-formatter
javascript-number-formatter copied to clipboard
Incorrect formatting when using #,##0 format
Hi, I'ma having a problem using the formatter: #,##0
In C#: string.Format("{0:#,##0}", 0) ---> 0 string.Format("{0:#,##0}", 68) ---> 68
In the library: format('#,##0', 0) ---> ,000 format('#,##0', 68) ---> 68,000