Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6698501
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:35:07+00:00 2026-05-26T06:35:07+00:00

How can I create a function for finding the number of business days (weekdays)

  • 0

How can I create a function for finding the number of business days (weekdays) of the current month? Can you code in simple JavaScript without jQuery?

    function daysInMonth(iMonth, iYear)
    {
        return 32 - new Date(iYear, iMonth, 32).getDate();
    }

    function Detail()
    {
        var d = new Date();
        var year = d.getFullYear();
        var month = d.getMonth();
        var dim = daysInMonth(month, year);
        alert(dim);
    }

    function Businessday(iMonth, iYear)
    {
        // Enter code here
    }

    function isBusinessDay()
    {
        var d = new Date();
        var day = d.getDay();
        switch(day) {
            case 0:
                document.write("Today is weekend");
            break;

            case 6:
                document.write("Today is weekend");
                break;

            default:
                document.write("Today is a business day");
        }
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T06:35:08+00:00Added an answer on May 26, 2026 at 6:35 am

    OK, let’s solve this one piece at a time.

    The Date object in JavaScript has a method, getDay. This will return 0 for Sunday, 1 for Monday, 2 for Tuesday, … 6 for Saturday. Given that, we can conclude that we want to not count days whose getDay returns 0 or 6.

    You already have a function to return the number of days in a month, so assuming that, we can loop over all of the days and check the result of getDay. daysInMonth makes the assumption that the month is zero-based; so 0 = January.

    I’d encourage you to try solving this on your own from here; otherwise read on.


    Let’s start with an isWeekday function. We need the year, month, and day:

    function isWeekday(year, month, day) {
        var day = new Date(year, month, day).getDay();
        return day !=0 && day !=6;
    }
    

    We do exactly as we talked about above: we construct a Date, and use getDay to determine if it’s a day.

    Now we need to loop over all of the days in the month:

    function getWeekdaysInMonth(month, year) {
        var days = daysInMonth(month, year);
        var weekdays = 0;
        for(var i=0; i< days; i++) {
            if (isWeekday(year, month, i+1))
                weekdays++;
        }
        return weekdays;
    }
    

    We loop over all of the days in the month. We add 1 when checking isWeekday because the day, unlike month, is 1 based. If it is, we increment weekdays, then return.

    So we can use getWeekdaysInMonth like this:

    var weekdays = getWeekdayInMonth(9, 2011); // 9 = October.
    

    Which will result in 21.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can create function pointers in Fortran 90, with code like real, external ::
How can I create a buffer in linux kernel without malloc() function (or calloc()
I want to create a simple menu function which can call it example get_menu()
in C++, I can easily create a function pointer by taking the address of
It's possible to call C functions through CREATE FUNCTION but how can .NET functions
I'm looking to create a PHP function that can trim each line in a
I'm using CreateWindowEx() function to create an EDIT window, i.e. where a user can
I would like to know how to create a php function that can be
I am trying to create a budget using a Match function, but I can't
Here is my problem, I need to create a javascript function that takes 2

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.