这是我的代码
var newDateObj2 = moment("2020-04-29T14:05:00.000Z").format('YY/MM/DD,HH:mm:ss.S');
console.log(newDateObj2);
Output
20/04/29,19:35:00.0
Expected Output
20/04/29,14:05:00.0
为什么在我的最终结果中添加了 5.30 (h.mm),当我打印时
moment("2020-04-29T14:05:00.000Z")`=> Moment<2020-04-29T19:35:00+05:30>
如何获得输出 20/04/29,14:05:00.0