Last active
August 29, 2015 13:56
-
-
Save rxnlabs/8936330 to your computer and use it in GitHub Desktop.
Javascript - Show Today's Date
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//http://stackoverflow.com/questions/1531093/how-to-get-current-date-in-javascript | |
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} today = mm+'/'+dd+'/'+yyyy; | |
document.write(today); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment