I have a question, in PHP I can convert a whole number to date, in the following way:
echo date("Y-m-d H:i",'1544102153');
and return:
2018-12-06 14:15
How can I do this in Angular? I've tried with:
{{'1544102153' | date:'dd/MM/yyyy(EEE) - hh:mmaaa'}}
But it returns to me:
18/01/1970(Sun) - 06:03PM
Thanks for the help.