Just looking to get the date that corresponds with a specific day of the month. For example, the third Sunday of this month. I know this is possible with Luxon using something like below, but I’m not sure if that’s easily done in N8N.
const currentMonth = DateTime.local().startOf('month');
const thirdSunday = currentMonth.plus({ weeks: 2 }).weekday;