| Author |
Time value?
|
nirjari patel
Ranch Hand
Joined: Apr 23, 2009
Posts: 265
|
|
var expirationDate = new Date();
expirationDate.setTime(expirationDate.getTime()
+ 1000*60*60*24*30);
In this code expirationDate.getTime() gives time in milli seconds. I got 1321924420144, when I tried this code at 8:13 pm on November 11, 2011. So my confusion is, this 1321924420144 is from when ? Is it from 00 hours of November 11, 2011 ? Or is starting time some different point ?
If its from 00 hours of November 11, 2011, then numbers don't match.
(1321924420144) / (1000*60*60) = 367201. So what kind of time is this ? Please explain, what does this figure returned by getTime() mean ?
Thanks
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56554
|
|
|
Milliseconds since Jan 1, 1970 (UNIX base time).
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15362
|
|
Get yourself a good reference: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date
Eric
|
 |
 |
|
|
subject: Time value?
|
|
|