javascript 关于使用Moment.js的博客文章的代码示例 Posted 2021-05-04 tags: 篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 关于使用Moment.js的博客文章的代码示例相关的知识,希望对你有一定的参考价值。 const uglyDate = '29–03–1989'; // parse the ugly date with a specific format const niceDate = moment(uglyDate, 'DD-MM-YYYY'); // format the date into our nice, custom format console.log(niceDate.format('ddd MMM Do, YYYY')); // Wed Mar 29th, 1989 以上是关于javascript 关于使用Moment.js的博客文章的代码示例的主要内容,如果未能解决你的问题,请参考以下文章 javascript moment.js的使用 javascript JS - 使用Moment.js的时间戳 如何在本机反应中使用诸如 moment.js 之类的 javascript 库 Moment.js - 显示选定范围内关于用户时区的历史数据 JavaScript 日期处理类库-Moment.js 使用moment.js轻松管理日期和时间