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

  • Home
  • SEARCH
  • 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 6989541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:13:33+00:00 2026-05-27T19:13:33+00:00

I don’t really know too much about core JavaScript, just a dot of jQuery.

  • 0

I don’t really know too much about core JavaScript, just a dot of jQuery. But I know jQuery is not necessary for what I need here:

I want to use the getdate function to find out the server’s day of the week. Then add a bunch of clauses like:

  • if its Monday add 6 to the date and return the date in MM/DD/YYYY form.
  • if its Tuesday add 5 to the date and return the date in MM/DD/YYYY form.
  • if its Wednesday add 4 to the date and return the date in MM/DD/YYYY form.

and so on until Sunday when it will add 0.

So lets say todays Monday, it will return 1/8/2012
And in real dates today’s Sunday so it will really return 1/1/2012

Then I just want to call a document.write function to write the MM/DD/YYYY it returns into my HTML document.

Can anybody help me? I can clarify if you need me to…

  • 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-27T19:13:33+00:00Added an answer on May 27, 2026 at 7:13 pm

    getDay() returns the day of the week, Sunday = 0, Monday = 1, etc, etc.

    So say today was Monday getDay() would return 1, which means daysToAdd would be 5.

    Once we know how many days we want to add we can create a new date and add those days. We do this by getting today in milliseconds and then adding the number of days (daysToAdd) in milliseconds.

    We convert days to milliseconds by multiplying by 24*60*60*1000 which is the number of milliseconds in a day.

    I add 1 to the month because JavaScript returns 0 based month, but for display purposes we want to format it so that January for example is 1 not zero.

    function getEndOfWeek() {
        var today = new Date();
        var weekDay = today.getDay();
        // if you want the week to start on Monday instead of Sunday uncomment the code below
        //weekDay -= 1;
        //if(weekDay < 0) {
        //    weekDay += 7;
        //}
        var daysToAdd = 6 - weekDay;
        var newDate = new Date(today.getTime() + daysToAdd *24*60*60*1000);
        var month = newDate.getMonth() + 1;
        var day = newDate.getDate();
        var year = newDate.getFullYear();
        var formatedDate = month + "/" + day + "/" + year;
        return formatedDate;
    }
    

    You could implement in your code like so, JavaScript:

    $(function() {
        $("#TheDate").html(getEndOfWeek());
    });
    

    Your HTML would be something like this:

    The week ends on <span id="TheDate"></span>.
    

    You can find the jsFiddle here: jsFiddle

    If you want to adjust the weekday so that you consider Monday the start of the week instead of Sunday you can do the following after you get the weekDay:

    weekDay -= 1;
    if(weekDay < 0) {
        weekDay += 7;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Don't really know how to formulate the title, but it should be pretty obvious
I don't know if this question is trivial or not. But after a couple
Don't know much about encryption... Say I'm preparing a SAML request to submit to
Don't know whether I'm having a "thick day" - but I just wondered what
Don't know how to google for such, but is there a way to query
Don't know if I worded the question right, but basically what I want to
(Don't know if this is strictly on-topic, but I don't see any better Stack
Don't know how to explain it better but i'm trying to get a response
Don't know why people do not practice AJAX implementation for authentication systems. Is it
Don't know whats exactly going on, but it's definitely killing my time for nothing.

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.