I have few values coming from server which are conceptually currencies but stored in the system as string like this 274,412.00
. Also there won't always be trailing zeroes.
I need to convert those into numbers for some calculations. I can't use the currency pipe with that:
{{ myvalue | currency:'GBP')
How can I convert them?