obtener - Convertir tiempo a formato de 24 horas en Javascript
obtener hora utc javascript (2)
¿Cómo puedo aislar y convertir el formato de hora local en la new Date()
JavaScript new Date()
a un formato de 24 horas?
Ejemplo: 2016-09-22T23:21:56.027Z
solo se convierte en 22:56
en hora local.
new Date("2000-01-01 10:30 AM").getHours() // 10
Esto es 24 horas:
new Date("2000-01-01 10:30 PM").getHours() // 22
Si quieres algo más general:
function get_hours(time_string) {
return new Date("2000-01-01 " + time_string).getHours() // 22
}
theDate.format("H:MM")
Eche un vistazo aquí para obtener más detalles: http://blog.stevenlevithan.com/archives/date-time-format