I'm using AccountingJs to format currency, but not always the values that work are in the house of thousands. I also need to convert variables to hundreds, like $ 234.45
The problem is that this and other plugins and JS methods I've tried always convert the values into thousands, never into hundreds.
I am using the value 17652 as an example, but:
Accounting.formatMoney (17652); // returns 17,652
Does anyone know of any way I can solve this?
Thanks!