I am a beginner in Angular 2.I'm trying to display some data using angular. this is my code part:
<span>Value :</span> <span>{{myvalue| number : '1.2-2'}}</span>
Above part will display Value as for eg: "124,500.00". Its ok but i need to remove comma and display data as 124500.00 only. Also this is not a currency type.
I tried some thing like this and its not working
<span>Value :</span> <span>{{myvalue| number: '.2-3''}}</span>
How can i do that?Can i use any custom pipe?
Thanks in advance