I didn't see any pattern for your requirement, but you can this
var CronJob = require('cron').CronJob;
var x = 1;
new CronJob('0 35 14 * * 0', async function () {
if (x / 2 != 1) {
x++;
//do somthing
} else {
x = 1;
}
}, null, true, 'America/Los_Angeles');
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…