Is there a built in filter in angular to convert my unix timestamp to a human readable date format?
I have tried the following:
{{ ::time | date:\"medium
You need to convert seconds to milliseconds... Try it with 1232346882000.
1232346882000
{{ 1232346882000 | date:"medium" }}
Fiddle