When i use \'currency\' in angular js, I am getting a dollar symbol. How to get required currency symbols based on the requirements. As if now i need to know how to display
Simple solution giving for the INR currency.
If you want to display symbol
Item Price{{item.price | currency:'INR'}}
or
Item Price{{item.price | currency:'INR':'symbol'}}
or
Item Price{{item.price | currency:'INR':'symbol-narrow'}}
Result will look like: ₹140.00
Or If you want to display code instead of symbol then use following
Item Price{{item.price | currency:'INR':'code'}}
Result will look like : INR140.00
Similarly you can check for the code of the other countries and replace that instead of INR(India Code)