发布于 3年前
js 检查日期是否为工作日
使用这个方法,你就可以检查函数参数是工作日还是周末。
const isWeekday = (date) => date.getDay() % 6 !== 0;
console.log(isWeekday(new Date(2021, 0, 11)));
// Result: true (Monday)
console.log(isWeekday(new Date(2021, 0, 10)));
// Result: false (Sunday)