I'm using angle 4 and I want to be able to use a thousands separator pipe for example if the amount is 6000 that appears 6,000, if the amount is 60000 that appears 60,000 and so ...
I tried to use some pipes but I can not find one that works for me, to show the amount I use a
ngFor="let item of items"
and in the part that I show the amount I put
{{item.Monto/1000 | currency:'USD':true:'2.3-3'}}
with that I see the amount as 06.000
instead of 6.000