js 提供年月计算月初月末 或者 计算月初 和下一个月初

可以使用 Date 对象和一些简单的逻辑来计算指定年月的月初和月末。下面是一个例子:

function getFirstAndLastDay(year, month) {
  const firstDay = new Date(year, month - 1, 1);
  const lastDay = new Date(year, month, 0);
  const firstDayStr = firstDay.toISOString().slice(0, 10);
  const lastDayStr = lastDay.toISOString().slice(0, 10);
  return {
    firstDay: firstDayStr,
    lastDay: lastDayStr
  };
}

// 示例用法
const { firstDay, lastDay } = getFirstAndLastDay(2022, 3);
console.log(firstDay); // 输出 "2022-03-01"
console.log(lastDay); // 输出 "2022-03-31"

这个函数接受两个参数:要计算的年和月。然后它会创建一个 Date 对象来表示指定年月的第一天(月初)和最后一天(月末)。最后,它将日期转换为字符串格式并返回一个包含月初和月末的对象。

可以使用 Date 对象和一些简单的逻辑来计算指定年月的月初和下一个月初。下面是一个例子:

function getFirstDayAndNextMonthFirstDay(year, month) {
  // 计算指定年月的月初
  const firstDay = new Date(year, month - 1, 1);
  const nextMonth = month + 1;
  const nextYear = year + (nextMonth > 12 ? 1 : 0);
  // 计算下一个月的月初
  const nextMonthFirstDay = new Date(nextYear, nextMonth - 1, 1);
  const firstDayStr = firstDay.toISOString().slice(0, 10);
  const nextMonthFirstDayStr = nextMonthFirstDay.toISOString().slice(0, 10);
  return {
    firstDay: firstDayStr,
    nextMonthFirstDay: nextMonthFirstDayStr
  };
}

// 示例用法
const { firstDay, nextMonthFirstDay } = getFirstDayAndNextMonthFirstDay(2022, 3);
console.log(firstDay); // 输出 "2022-03-01"
console.log(nextMonthFirstDay); // 输出 "2022-04-01"

这个函数接受两个参数:要计算的年和月。然后它会创建一个 Date 对象来表示指定年月的第一天(月初),并计算出下一个月的年月。接着,它将创建一个表示下个月的月初的 Date 对象。最后,它将日期转换为字符串格式并返回一个包含月初和下一个月初的对象。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值