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

I'm trying to get the last week date in javascript, without the time.

So for example, 10-02-2012, instead of 10-02-12 13:34:56 GMT.

Is there an easy solution out there for this?

Thank you!

Edit:

I'm trying to make this dynamic, so that the resulting variable is always one week before the current date. Here's what I've done to calculate the today variable, if this helps or can be used!

 var currentTime = new Date();
                            var month = currentTime.getMonth() + 1
                            var day = currentTime.getDate();
                            var year = currentTime.getFullYear();
                            var today = month + "-" + day + "-" + year;
                            alert(today)
share|improve this question

3 Answers

up vote 2 down vote accepted

I prefer something like this

function getLastWeek(){
    var today = new Date();
    var lastWeek = new Date(today.getFullYear(), today.getMonth(), today.getDate() - 7);
    return lastWeek ;
}

var lastWeek = getLastWeek();
var lastWeekMonth = lastWeek.getMonth() + 1;
var lastWeekDay = lastWeek.getDate();
var lastWeekYear = lastWeek.getFullYear();

var lastWeekDisplay = lastWeekMonth + "/" + lastWeekDay + "/" + lastWeekYear;
var lastWeekDisplayPadded = ("00" + lastWeekMonth.toString()).slice(-2)+ "/" + ("00" + lastWeekDay .toString()).slice(-2)+ "/" + ("0000" + lastWeekYear .toString()).slice(-4);

alert(lastWeekDisplay);
alert(lastWeekDisplayPadded);
​

And if you're using jQuery UI, you can do this instead of the manual steps to build the string

var lastWeekDisplay = $.datepicker.formatDate('mm/dd/yy', getLastWeek());

Or for today

var todayDisplay = $.datepicker.formatDate('mm/dd/yy', new Date());
share|improve this answer
This is great. How would I get the today variable also to be without the timestamp? I utilize it later in my code! – streetlight Oct 9 '12 at 18:25
I just added that. – CaffGeek Oct 9 '12 at 18:25
This is great -- however, whenever I alert the 'today' variable, I still get the timestamp -- is there any easy way to apply this as well? Thank you for all of your help! – streetlight Oct 9 '12 at 18:38
Nevermind, i just utilized the code I had above to. Thank you for being great! – streetlight Oct 9 '12 at 18:41
I just realized that if the date is a single digit (say 10/4/12), then it shows up as 10/4/12, rather than 10/04/12. Is there anyway to make sure that 0 is in there? – streetlight Oct 11 '12 at 12:22
show 2 more comments
 var firstDay = new Date("2009/10/02");
 var previousweek= new Date(firstDay.getTime() - 7 * 24 * 60 * 60 * 1000);

Check out this link. It will help:- http://code.google.com/p/datejs/

share|improve this answer
Thank you for your help! I did check out date.js, but I thought it would be simpler to do it in just plain JS since I wouldn't be using all it's advanced functionality. Thanks! – streetlight Oct 9 '12 at 19:16

If you really want to create this from a full timestamp like 10-02-12 13:34:56 GMT, you might want to do this:

var time = '10-02-12 13:34:56 GMT';
document.write(time.substr(0,7));
share|improve this answer
How would I make this dynamic? – streetlight Oct 9 '12 at 18:18
Use var time = functionToGenerateTimestamp(); And replace that function with the function you used. – BazzyTK Oct 9 '12 at 18:22

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.