I am trying to display timestamp using angular. At the backend on console log I am getting date like this 2020-09-03 00:00:00.0 but when I trying to get date at frontend it is displaying like this 1600021800000. How can I display date in regular format?
This how I get date on console using spring boot -
And when get it at frontend it display like this -
How can I display date like this 2020-09-03 00:00:00.0?

