Angular CurrencyPipe –
The CurrencyPipe is used to format a currency with help of locale rules.
{{ value_expression | currency [ : currencyCode [ : display [ : digitsInfo [ : locale ] ] ] ] }}
The CurrencyPipe formats a number as a currency of a specific country. It takes country currency type as a parameter.
The example for the currency pipe –
<tr>
<td>{{employee.salary | currency}}</td>
<td>{{employee.salary | currency : 'INR'}}</td>
<td>{{employee.salary | currency : 'INR' : true : '6.2'}}</td>
</tr>
For more detail kindly refer this link click…