What is CurrencyPipe in Angular 10 ? (original) (raw)

Last Updated : 03 Jun, 2021

In this article, we are going to see what is CurrencyPipe in Angular 10 and how to use it. CurrencyPipe is used to transform a number to a currency string, formatted according to locale rules that determine group sizing and separator, decimal-point character

Syntax:

{{ value | currency }}

Approach:

Parameters:

Example 1:

app.component.ts `

import { Component } from '@angular/core';

@Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { // Currency variable to be used a = 100; }

app.component.html

A: {{a | currency}}

A: {{a | currency:'INR'}}

A: {{a | currency:'INR':'code'}}

A: {{a | currency:'EUR'}}

`

Output: