0

I'm trying to use this angular pipe but just to get the format, not with add of symbol such as $ and also not a code as USD.

Akber Iqbal
  • 14,487
  • 12
  • 48
  • 70

1 Answers1

3

simple: {{ amountValue | currency:'USD':'' }} - the empty quotes will ensure suppress the currency and code

complete reference: https://angular.io/api/common/CurrencyPipe

Akber Iqbal
  • 14,487
  • 12
  • 48
  • 70