Switch to German, open browser console, try this:
formatter = new Intl.NumberFormat(undefined, {
style: 'currency',
currency: 'EUR',
});
formatter.format(10)
Result: "10,00 €"
Then switch to a different language, reload the page, run the same code. The result is still "10,00 €"; it should have been "€10.00".