I need to format a number like 1234567
as 1,234,567
but don't know how to do this. I tried using currency pipe of TypeScript but that gives USD or $ in front of the number. I want to remove that and format the number in this way 1,234,567
. How can I do this?