I am trying to format the currency as following
const formatter = new Intl.NumberFormat("en-GB", {
style: "currency",
currency: "GBP",
minimumFractionDigits: 2
});
const moneyFormat = formatter.format(7360);
Expected £73.60
but it returns £7,360.00
Any idea what am I doing wrong?