Created
December 19, 2017 20:01
-
-
Save codenamejason/b7de32baebbc5d7829154818ffc5fdf0 to your computer and use it in GitHub Desktop.
Get the current date and build string
This file contains hidden or 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
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