I have a chart that's giving me this date:
1577612800000
I need to convert it to "ddmmyy" format
I found this:
var timestamp = 1577612800000;
var date = new Date(timestamp * 1000);
But it has no format.
How can I do this with format ddmmyy ?