Skip to content
Advertisement

JavaScript for getting the previous Monday

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

However, this is not quite working, why?

Advertisement

Answer

I think your math is just a little off, and I tidied your syntax;

JavaScript

That way you always get the last Monday that happened (which is 7 days ago if today is Monday)

Advertisement