up vote 12 down vote favorite
3
share [g+] share [fb]

How to get current date in JavaScript?

link|improve this question

51% accept rate
feedback

5 Answers

up vote 25 down vote accepted

Your question was a little light. It's always best to say hello and explain your question rather then just "how do I do this". After all this is a community. This is why you got such harsh responses.

Moving on. Hendrik's answer will work but probabbly isn't what you are looking for. The format is not very usable.

I have been having the same issue and have come up with this through a lot of searching.

var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!

var yyyy = today.getFullYear();
if(dd<10){dd='0'+dd} if(mm<10){mm='0'+mm} var today = mm+'/'+dd+'/'+yyyy;
document.write(today);

It's quite complex but it will give you todays date in the format of mm/dd/yyyy.

Simply change today = mm+'/'+dd+'/'+yyyy; document.write(today); to what ever format you wish.

Hope this helps.

link|improve this answer
2  
thank you very much Dear Samuel Meddows – Sunny Mate Mar 20 '11 at 11:30
if we were in the year 999 that wouldnt work :D (add var year = (yyyy < 1000) ? yyyy + 1900 : yyyy;) , + 1 though for this – MMC Jan 4 at 8:30
feedback

var currentTime = new Date();

link|improve this answer
6  
but you should have googled it first – Hendrik Oct 7 '09 at 11:41
2  
its funny because when I googled it, this was the first result, but you still get a +1 – Darko Z Jun 23 '11 at 6:41
feedback

He should have googled it and you should have provided the google query rather than the answer: http://www.google.com/search?q=current+date+javascript

link|improve this answer
7  
He should have googled it, Hendrik should have linked it and you should have used lmgtfy! :P lmgtfy.com/?q=current+date+javascript – wds Oct 7 '09 at 13:15
Haha! Cool. My apologies. I'll use lmgtfy in future. – Andrew Oct 8 '09 at 6:03
1  
this was the first result I got on google – YuriKolovsky Oct 14 '11 at 7:30
feedback

See the documentation for the Date object. It has examples.

link|improve this answer
he should have googled it : p – Shawn Nov 30 '11 at 19:58
feedback

this would help you

http://www.tizag.com/javascriptT/javascriptdate.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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