When using a numberformatter in JavaScript, is it possible to format the value with the euro sign before the value?
this.formatter = new Intl.NumberFormat('nl-be', {
style: 'currency',
currency: 'EUR',
minimumFractionDigits: 2
});
this.formatter.format(2000);
The code sample from above returns 2000.00€ instead of €2000.00