moment.js获取当前时间前半年
时间: 2023-05-18 19:07:31 浏览: 1100
用moment.js 获取当前时间源码.zip
你可以使用moment.js的subtract()函数来获取当前时间前半年的时间。具体代码如下:
var currentDate = moment();
var halfYearAgo = currentDate.subtract(6, 'months');
console.log(halfYearAgo);
这段代码将会输出当前时间前半年的时间。
阅读全文