js(时间日期)方法集合,当前时间,当前日期的上一个月,当前或者给定的具体某一天
// 获取当前时间
const getCurrentTime = () => new Date();
// 获取当前日期的上一个月
const getLastMonth = (date = new Date()) => {
const nextMonth = new Date(date.getFullYear(), date.getMonth() - 1, date.getDate());
return nextMonth;
};
// 获取当前或给定日期的具体某一天
const getSpecificDay = (date = new Date(), dayOfMonth = date.getDate()) => {
const specificDay = new Date(date.getFullYear(), date.getMonth(), dayOfMonth);
return specificDay;
};
// 示例
const currentTime = getCurrentTime();
console.log('当前时间:', currentTime);
const lastMonth = getLastMonth(currentTime);
console.log('上一个月的日期:', lastMonth);
const specificDay = getSpecificDay(currentTime, 15); // 假设我们想要获取当月15号
console.log('指定日期的日期:', specificDay);
这段代码定义了三个函数,分别用于获取当前时间、当前日期的上一个月以及当前或给定日期的特定某一天。然后通过示例代码展示了如何使用这些函数。
评论已关闭