Skip to content

Instantly share code, notes, and snippets.

@mikebobadilla
Created January 9, 2016 19:18
Show Gist options
  • Save mikebobadilla/6e8e56a07197acae9be1 to your computer and use it in GitHub Desktop.
Save mikebobadilla/6e8e56a07197acae9be1 to your computer and use it in GitHub Desktop.
Format Date Function
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