vote up 9 vote down star
2

Something similar to Unix's timestamp, that is a single number that represents the current time and date. Either as a number or a string.

flag

73% accept rate

8 Answers

vote up 30 vote down check
new Date().getTime(); // returns the number of MS since the epoch
link|flag
vote up 0 vote down

time = Math.round(((new Date()).getTime()-Date.UTC(1970,0,1))/1000);

link|flag
vote up -2 vote down

Great solution: i added

'&random='+new Date().getTime()

into my Ajax call now it works. Is there a solution to disable caching when making the POST/GET via

req = new XMLHttpRequest();
req.open("GET",adress, true);
req.setRequestHeader("something","to disable chaching");

thanks

link|flag
If you have a question, don't post a new answer to ask it. – çağdaş Oct 22 at 12:54
vote up -1 vote down

i want to ask something.... plz help me... somebody know about coding which is... when we enter date for example for start date, after that, for the ending date, its automatically fill up. and the date is set for two years after the start. plz help me

link|flag
Could you be a little more explicit in what exactly are you looking for? – Adhip Gupta Jul 27 at 4:56
actually, i want to search a coding. coding that can generate date. for example, i enter the start date on 1-1-2009. then for the end date, its automatically generate. and we also set for 2 years period. so, the end date is 1-1-2011. but i dont know the coding., help me – nina Jul 27 at 5:36
so, the user no need to fill up for end date. they only fill up for start date. – nina Jul 27 at 5:37
1  
Nina, if you want to ask another question, the place is stackoverflow.com/questions/ask – J. Pablo Fernández Jul 27 at 8:24
vote up 3 vote down

I don't have enough points to add a comment to daveb's accepted answer but I think it's worth saying, so I hope you don't mind me putting it here.

One benefit of his way is that the same syntax can be found in other languages. For instance, the following code will give you the exact same timestamp in Java or Scala:

(new java.util.Date()).getTime();

link|flag
vote up 0 vote down
new Date().valueOf()// returns the number of MS since the epoch
link|flag
vote up 1 vote down
var timestamp = Number(new Date()); // current time as number
link|flag
vote up 1 vote down
var $time = Date.now || function() {
  return +new Date;
};

$time()
link|flag
Why the || operator? Is Date.now() not available on all browsers? – Chris Noe Oct 22 '08 at 0:58
Apparently not, I found the code in modulejs – Staale Nov 4 '08 at 8:13

Your Answer

Get an OpenID
or

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