How can I convert a UTC timestamp to human readable time - using JavaScript?
For instance, I have this timestamp - 1425356823380
I would like to convert it to this format,
03/03/2015 04:27:03
This is how I get the timestamp from,
var d = new Date();
var utc = d.getTime() + (d.getTimezoneOffset() * 60000);
Any ideas?