Format a number as a string represented as a currency e.g. $123.31
number
string
const amount = 123.321const text = localisationService.formatCurrency(amount)// Display text Copy
const amount = 123.321const text = localisationService.formatCurrency(amount)// Display text
Format a
numberas astringrepresented as a currency e.g. $123.31Example