I have a quantity that, when using the amount.toFixed() function, produces the string "100.00". I would like this result to be formatted according to the specific locale.
For example, in Italian the desired output is 100,00, while in English it should be 100.00
Is there a method or approach I can implement to achieve this?
amount.toFixed(2)
I am working with react-native technology