I am using angular and rxjs.
So I have this:
x: console.log(res.map(date => date.dt))
And it returns this:
0: "2021-01-19T12:50:00Z"
1: "2021-01-19T12:51:00Z"
2: "2021-01-19T12:52:00Z"
3: "2021-01-19T12:53:00Z"
4: "2021-01-19T12:54:00Z"
5: "2021-01-19T12:55:00Z"
6: "2021-01-19T12:56:00Z"
7: "2021-01-19T12:57:00Z"
8: "2021-01-19T12:59:00Z"
But of course that is not readable.
SO I want to convert it to for example this: '2021-01-19 12:50:00',
So: yyyy-MM-dd HH-MM-SS
But so what I have to change?
Thank you
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…