FE/Angular
[ ANGULAR ] 화폐 콤마 표시
라넌.B
2021. 6. 4. 14:09
https://stackoverflow.com/questions/56891796/how-to-hide-currency-symbol-in-angular-currency-pipe
How to hide currency symbol in angular currency pipe
I'm trying to use Angular currency pipe and I wanted to remove the currency symbol all together from the formatted number, but it seems there is no option to do that. So is there any easy way to ac...
stackoverflow.com
방식1 - currency pipe 사용
price | currency:'':''
방식2 - number pipe 사용
{{ 50000 | number }} <!-- output: 50,000 -->