Skip to content

Instantly share code, notes, and snippets.

@thmain
Created December 25, 2022 05:30
Show Gist options
  • Save thmain/1839e67f348093e3bf14fa140c1587f4 to your computer and use it in GitHub Desktop.
Save thmain/1839e67f348093e3bf14fa140c1587f4 to your computer and use it in GitHub Desktop.
function timeConvertor(time) {
var PM = time.match('PM') ? true : false
time = time.split(':')
var min = time[1]
if (PM) {
var hour = 12 + parseInt(time[0],10)
var sec = time[2].replace('PM', '')
} else {
var hour = time[0]
var sec = time[2].replace('AM', '')
}
console.log(hour + ':' + min + ':' + sec)
}
timeConvertor('07:03:15PM'); // "19:03:15"
timeConvertor('1:53:55AM'); // "1:53:55"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment