使用 MomentJS 获取一个月的第二个星期五

Get the 2nd Friday of a month with MomentJS

我正在尝试使用 momentjs

获取一个月中的 nth 星期五

其中 n[1,4]

范围内

因此,如果用户将 n 提供为 2。那么我需要获取该月第二个星期五的日期。

这是我尝试过的方法,但没有成功

let startingFrom = new Date("StartDateStringGoesHere");
let n=2;
let nthFriday = moment(startDate).isoWeekday(n); //I can't figure out how to resolve it here

任何想法将不胜感激。

这是一个通用函数,不需要库

function nthWeekdayOfMonth(year, month, nth, dow) {
    const d = new Date(year, month - 1, 7 * (nth - 1) + 1);
    const w = d.getDay();
    d.setDate(d.getDate() + (7 + dow - w) % 7);
    return d;
}
// second(2) friday(5)
for (let month = 1; month < 13; month++) {
    console.log(nthWeekdayOfMonth(2022, month, 2, 5).toString());
}

// third(3) sunday(0)
for (let month = 1; month < 13; month++) {
    console.log(nthWeekdayOfMonth(2022, month, 3, 0).toString());
}

这是在 m

中执行此操作的示例函数
// Using moment get all Fridays in a month
const searchDate = moment()

function getNthDay(n, day, startDate){
    let daysArray = []
    for (let i = 0; i <= startDate.daysInMonth(); i++) {
        const currentDay = moment().startOf("month").add(i, "days");
        if (currentDay.format('dddd') === day) {
            daysArray.push(currentDay);
        }
    }
    
    return daysArray[n];
}

const nDay = getNthDay(1, 'Friday', searchDate);

console.log(nDay)