Created
January 9, 2016 19:18
-
-
Save mikebobadilla/6e8e56a07197acae9be1 to your computer and use it in GitHub Desktop.
Format Date Function
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
function formatDate(date) { | |
var hours = date.getHours(); | |
var minutes = date.getMinutes(); | |
var ampm = hours >= 12 ? 'pm' : 'am'; | |
hours = hours % 12; | |
hours = hours ? hours : 12; // the hour '0' should be '12' | |
minutes = minutes < 10 ? '0'+minutes : minutes; | |
var strTime = hours + ':' + minutes + ' ' + ampm; | |
return date.getMonth()+1 + "/" + date.getDate() + "/" + date.getFullYear() + " " + strTime; | |
} | |
var d = new Date(); | |
var e = formatDate(d); | |
alert(e); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment