I am in the process of learning Angular and am having trouble displaying a currency symbol.
I am calling my data from an api which is returning a formatted entry like this:
"currency_formatted": "£20 Million"
In angular when I populate the formatted field: {{currency_formatted}} it outputs:
£20 Million
What I am expecting is: £20 Million
I can have the currency symbol returned in the api so: GBP, is there a way to use this to have the correctly formatted currency instead of passing the hex?
Any ideas would be appreciated!