Skip to content
Advertisement

Extract time from moment js object

How do i extract the time using moment.js?

"2015-01-16T12:00:00"

It should return “12:00:00 pm”. The string return will be passed to the timepicker control below.

http://jdewit.github.com/bootstrap-timepicker 

Any idea?

Advertisement

Answer

If you read the docs (http://momentjs.com/docs/#/displaying/) you can find this format:

moment("2015-01-16T12:00:00").format("hh:mm:ss a")

See JS Fiddle http://jsfiddle.net/Bjolja/6mn32xhu/

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement