Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,082 questions

55,955 answers

573 users

How to calculate the future occurrences of Friday the 13th in Node.js

1 Answer

0 votes
function findFridayThe13ths(startYear, endYear) {
    for (let year = startYear; year <= endYear; year++) {
        for (let month = 1; month <= 12; month++) {
            let date = new Date(year, month - 1, 13); // Month is 0-based in JS
            if (date.getDay() === 5) { // 5 corresponds to Friday
                console.log(`Friday the 13th: ${year}-${String(month).padStart(2, '0')}-13`);
            }
        }
    }
}

// Export function for use in other modules
module.exports = { findFridayThe13ths };

if (require.main === module) {
    findFridayThe13ths(2025, 2031);
}


/*
run:

Friday the 13th: 2025-06-13
Friday the 13th: 2026-02-13
Friday the 13th: 2026-03-13
Friday the 13th: 2026-11-13
Friday the 13th: 2027-08-13
Friday the 13th: 2028-10-13
Friday the 13th: 2029-04-13
Friday the 13th: 2029-07-13
Friday the 13th: 2030-09-13
Friday the 13th: 2030-12-13
Friday the 13th: 2031-06-13

*/

 



answered May 31, 2025 by avibootz
...