what would be a way in javascript to detect the last week of each (current) month. Or last monday of the month?
|
|
I would suggest to get the number of days in the month and then loop from the last day until getDay() gives back a Monday (1) or Sunday(0) .. based on when does your week start. Once you get your start date ... end date would be startDate + 7 so something along these lines I found this helpful :
Then the loop:
|
|||
|
|
|
Playing with the date object and its methods you can do the following.. update the complete calculations to get to last monday of the month could be compacted to
verbose example..
|
|||||||
|
|
Use |
|||
|
|
|
To determine whether it is a Monday, use |
|||
|
|
|
The Javascript "Date" object is your friend.
That'll give you the date (in the month, like 30) of the last day of the month that's the chosen day of the week (0 through 7). Finding the last week of the month will depend on what you mean by that. If you mean the last complete week, then (if you mean Sunday - Saturday) find the last Saturday, and subtract 6. If you mean the last week that starts in the month, find the last Sunday. |
|||||||
|
|
You may also like to find the third Monday or the first Tuesday before or after a given date, or flag every Wednesday between two dates.
|
|||
|
|
|
i found such example that detects last monday of each week but it wont detect last monday of the month. maybe it will help to find better solution, that code looks short.
|
|||
|
|
|
OK, so far i came up with such solution making it a bit of my own way and getting a few things mentioned here. It works correct and always returns the last monday of current month.
|
|||
|
|
|
Get the last day of the month:
Get the last Monday:
Get week of the year for a given day:
Putting them together (assuming you're using Firebug):
|
||||
|
|