format-currency Questions
2
I'm using Angular 9
In one of my components, I'm using Currency Formatting as bellow:
import { formatCurrency } from '@angular/common';
formatCurrency(23456, 'de-DE', '$')
Here, if I pass de-DE as...
Matland asked 2/2, 2021 at 12:53
1
I am using Angular 10 and imported the CurrencyPipe from '@angular/common' and based on the suggestions found, I implemented the following in the template -
<p>{{Amount | currency}}</p>...
Miskolc asked 5/7, 2022 at 21:50
1
© 2022 - 2024 — McMap. All rights reserved.