July 2017
Intermediate to advanced
454 pages
10h 1m
English
For applications that want to cater to multinational geographies, we need to show country-specific codes and their respective currency values--that's where CurrencyPipe comes to our rescue.
The CurrencyPipe operator is used to append the country codes or currency symbol in front of the number values.
Take a look at the code snippet implementing the CurrencyPipe operator:
{{ value | currency:'USD' }}Expenses in INR: {{ expenses | currency:'INR' }}
Let's analyze the preceding code snippet in detail:
So now that we know ...
Read now
Unlock full access