Limit to 2 decimal places with a simple pipe Limit to 2 decimal places with a simple pipe angular angular

Limit to 2 decimal places with a simple pipe


Currency pipe uses the number one internally for number formatting. So you can use it like this:

{{ number | number : '1.2-2'}}


Well now will be different after angular 5:

{{ number | currency :'GBP':'symbol':'1.2-2' }}


It's Works

.ts -> pi = 3.1415.html -> {{ pi | number : '1.0-2' }}Ouput -> 3.14
  1. if it has a decimal it only shows one
  2. if it has two decimals it shows both

https://stackblitz.com/edit/angular-e8g2pt?file=src/app/app.component.html

this works for me!!! thanks!!