How to display date in angular with filter.
Below output shows the input and the output (with/without angular date filter)
In: {{v.Dt}}
Angular: {{v.Dt | date:'yyyy-MM-dd HH:mm:ss Z'}}
prints:
In: 2015-03-19T05:52:10.634062Z
Angular: 2015-03-19T05:52:10.634062Z
The desired display format is 19 Mar 2015
Any help is appreciated.