Formats a given amount as US currency.
The amount to format as currency.
A string representing the formatted currency.
formatUSCurrency(10); // '$10.00'formatUSCurrency(10.7454); // '$10.75'formatUSCurrency(100000.7); // '$100,000.70' Copy
formatUSCurrency(10); // '$10.00'formatUSCurrency(10.7454); // '$10.75'formatUSCurrency(100000.7); // '$100,000.70'
Generated using TypeDoc
Formats a given amount as US currency.