I'm using currencyFormatter for my prices, and I would like to present my prices with the euro sign after the price and a full stop instead of a comma
Ej. 10.000€ (10 thousand euro).
(10000).toLocaleString(xxxx, {
style: 'currency',
currency: 'USD',
});
Does anyone know which unit I should use in the xxxx? Thanks for your help!