Last active
June 30, 2017 18:38
-
-
Save CoeusCC/972b4374373d76ec9d20ef4a1534286a to your computer and use it in GitHub Desktop.
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 get_formatted_time(time_string) { | |
const raw = new Date(time_string); | |
const hour = raw.getHours(); | |
const minute = ("0" + raw.getMinutes()).slice(-2); | |
const meridian = (hour < 13 ) ? 'AM' : 'PM'; | |
return hour + ':' + minute + ' ' + meridian; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment