如何使用 moment 将 json 日期更改为 MM/DD/YY?

How to change json date to MM/DD/YY using moment?

假设我有这个日期

const date = '2022-05-24T14:52:30.250Z';

我如何使用 moment 来检查这是否是有效日期并将其转换为类似 05/24/22 的日期? 感谢您的帮助和指导!

const date = '2022-05-24T14:52:30.250Z';
if (moment(date).isValid()) console.log(moment(date).format("MM/DD/YY")