I would like for the previous Monday to appear in the field where a user enters today’s date.
E.g.: If today’s date is entered 29-Jan-16
then the code would make the previous Monday’s date to appear instead (which would be 25-Jan-16
).
I have seen some code online:
JavaScript
x
9
1
function getPreviousMonday() {
2
var date = new Date();
3
if (date.getDay() != 0) {
4
return new Date().setDate(date.getDate() - 7 - 6);
5
} else {
6
return new Date().setDate(date.getDate() - date.getDate() - 6);
7
}
8
}
9
However, this is not quite working, why?
Advertisement
Answer
I think your math is just a little off, and I tidied your syntax;
JavaScript
1
15
15
1
function getPreviousMonday()
2
{
3
var date = new Date();
4
var day = date.getDay();
5
var prevMonday = new Date();
6
if(date.getDay() == 0){
7
prevMonday.setDate(date.getDate() - 7);
8
}
9
else{
10
prevMonday.setDate(date.getDate() - (day-1));
11
}
12
13
return prevMonday;
14
}
15
That way you always get the last Monday that happened (which is 7 days ago if today is Monday)