Format a number as a string represented as a readable number e.g. 123,321.123
number
string
const amount = 1234.4321const text = localisationService.formatCurrency(amount)// Display text Copy
const amount = 1234.4321const text = localisationService.formatCurrency(amount)// Display text
Format a
numberas astringrepresented as a readable number e.g. 123,321.123Example