Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please anyone share the code to find the previous month's first date from current date in JavaScript. For example, if the current date is 25th Jan 2009, I should get 1st Dec 2008 as result.

share|improve this question
Check this : stackoverflow.com/questions/605113/… – Learning Mar 3 '09 at 8:55
Possible duplicate Find first day of previous month in javascript – Tim Cooper Nov 4 '12 at 13:56

2 Answers

Straightforward enough, with the date methods:

  var x = new Date();

  with(x)
  {
    setMonth(getMonth()-1);
    setDate(1);
  }
share|improve this answer
except it misses when the year changes? – Learning Mar 3 '09 at 8:56
No it does that will auto adjust the date – REA_ANDREW Mar 3 '09 at 8:59
This is why you do this with the native date methods rather than messing around with your own calendar arithmatic. God I love JS :) – annakata Mar 3 '09 at 9:00
i.e. using his example substitute 1 for 5 say and the year will be 2008 – REA_ANDREW Mar 3 '09 at 9:00
1  
Unfortunately, using the 'with' keyword is deprecated in late JavaScript versions :( Source: stackoverflow.com/questions/61552/… – Design by Adrian Apr 13 at 17:15

Check this link:

http://blog.dansnetwork.com/2008/09/18/javascript-date-object-adding-and-subtracting-months/

EDIT: I have drummed up an example:

Date.prototype.SubtractMonth = function(numberOfMonths) {
var d = this;
d.setMonth(d.getMonth() - numberOfMonths);
d.setDate(1);
return d;
}

$(document).ready(function() {
    var d = new Date();
    alert(d.SubtractMonth(1));
});

Andrew

share|improve this answer
Hi Andrew, the solution you told returns exact 30 days back from current date. I need first date of the previous month irrespective of any date in current month. – Geetha Mar 3 '09 at 8:50
thanks dude !!!! i got it – Geetha Mar 3 '09 at 9:07
link is broken :( – AamirAfridi.com Sep 16 '11 at 15:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.