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 8652089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:13:36+00:00 2026-06-12T14:13:36+00:00

I need to display the current week in a calendar view, starting from Sunday.

  • 0

I need to display the current week in a calendar view, starting from Sunday.

What’s the safest way to determine “last sunday” in Javascript?

I was calculating it using the following code:

Date.prototype.addDays = function(n) {
      return new Date(this.getTime() + (24*60*60*1000)*n);
}

var today = new Date(now.getFullYear(), now.getMonth(), now.getDate());
var lastSunday = today.addDays(0-today.getDay());

This code makes the assumption that every day consists of twenty four hours. This is correct, EXCEPT if it’s a daylight savings crossover day, in which case the day could be twenty-three or twenty-five hours.

This week, In Sydney, Australia, we set our clocks forward an hour. As a result, my code calculates lastSunday as 23:00 on Saturday.

So what IS the safest and most efficient way to determine last Sunday?

  • 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-06-12T14:13:38+00:00Added an answer on June 12, 2026 at 2:13 pm

    To safely add exactly one day, use:

    d.setDate(d.getDate() + 1);
    

    which is daylight saving safe. To set a date object to the last Sunday:

    function setToLastSunday(d) {
      return d.setDate(d.getDate() - d.getDay());
    }
    

    Or to return a new Date object for last Sunday:

    function getLastSunday(d) {
      var t = new Date(d);
      t.setDate(t.getDate() - t.getDay());
      return t;
    }
    

    Edit

    The original answer had an incorrect version adding time, that does add one day but not how the OP wants.

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

Sidebar

Related Questions

In a current project i need to display PDFs in a webpage. Right now
How to get current year in dotCMS? I need to display it in footer
i am developing one application with map view i need display the weather depends
I need to display the parent from the first Element of input.xml Also I
I need to display a certain view when an activity starts, and when the
I need to display upcoming events from a database. The problem is when I
I need to display a list of comments within a view. I have created
In my application, we need to display the Video frame receives from server to
for a current webapp i need a outlook-like calendar... Here are some requirements for
I need to display my current position in Map Kit, how can I do

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.