how do I take a number like 10000
and have it output as $10,000.00
?
I even had a problem with String.format(...)
with a Not a function
error.
I followed numerous articles, all incomplete and none working.
I don't need full internationalization, just the ability to format a number
You can use this library react-number-format. It has these features
Sample usage
<NumberFormat value={2456981} displayType={'text'} thousandSeparator={true} prefix={'$'} />
Output : $2,456,981