Demo showing the use of minimumIntegerDigits

The integer number is padded with zeros due to having less digits than those specified.

JavaScript

console.log(new Intl.NumberFormat("fr", {
minimumIntegerDigits: 1,
style: "currency",
currency: "eur"
}).format(10.10)) // 000,010.1