Angular currency pipe no decimal value

To remove .00 from the currency pipe you can use this pattern. See the digitsInfo section on CurrencyPipe for more information.

{{ amount | currency : 'USD' : 'symbol' : '1.0-0' }} 

If you don’t need the decimal you can use the number pipe.

${{amount | number}}

Leave a Comment