Skip to content

Instantly share code, notes, and snippets.

@rxnlabs
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rxnlabs/8936330 to your computer and use it in GitHub Desktop.
Save rxnlabs/8936330 to your computer and use it in GitHub Desktop.
Javascript - Show Today's Date
//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