angular currency pipe code code example

Example 1: money pipe angular

{{ value_expression | currency [ : currencyCode [ : display [ : digitsInfo [ : locale ] ] ] ] }}

currencyCode	string	
Optional. Default is undefined.

display	string | boolean	
Optional. Default is 'symbol'.

digitsInfo	string	
Optional. Default is undefined.

locale	string	
Optional. Default is undefined.

Example 2: angular currency pipe pt-br as variable

//I solved this way:

//app.module.ts

import { LOCALE_ID } from '@angular/core';
import localePt from '@angular/common/locales/pt';
import {registerLocaleData} from '@angular/common';
registerLocaleData(localePt)

 providers: [{
    provide: LOCALE_ID, 
    useValue: "pt-BR"
  }],

//.html

currency:'BRL'