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

The function I'm using sets the cookie expiration in this part of the code:

time += 3600 * 1000;

It expires in an hour. How to set this to expire in 10 years?

share|improve this question
9  
I think the PC will expire before the cookie. – Kon Jun 14 '11 at 18:43
2  
Your calculator has broken? – Predator Jun 14 '11 at 18:43
@Kon: Nice one. – Predator Jun 14 '11 at 18:44
2  
@AllOfTheAbove commentors.... its he's first question, do you people mind being a bit nicer? – Dementic Jun 14 '11 at 18:47
Why there is no down vote? Ok, I throw the first one. – Predator Jun 14 '11 at 18:48
show 3 more comments

3 Answers

up vote 8 down vote accepted

Well, how many:

  1. hours are in a day?
  2. days are in a year?
  3. years are in a decade?

Answer:

time += 3600 * 1000 * 24 * 365 * 10;
share|improve this answer
var CookieDate = new Date;
CookieDate.setFullYear(CookieDate.getFullYear( ) +10);
document.cookie = 'myCookie=to_be_deleted; expires=' + CookieDate.toGMTString( ) + ';';
share|improve this answer

It will be

time += (3600 * 1000)*87660

8766 is the number of hours in year. The precise measurement is: 8 765.81277 hours

share|improve this answer
If there are 8766 hours in a year, and you multiply the base of 1 hour by 8766, then you are setting it for one year. – JAAulde Jun 14 '11 at 18:45
2  
@JAAulde read it more carefully – trutheality Jun 14 '11 at 18:51
Yeah, I swear that zero wasn't there before!! LOL! But I suppose there is no "Last Edited" notation, so I need to STFU. I apologize. – JAAulde Jun 14 '11 at 19:05

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.