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? 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/ You can do something like this var now = moment(); var time = now.hour() + ':' + now.minutes() + ':' + now.seconds(); time = time + ((now.hour()) >= 12 ? ' PM' : ' AM'); This is the good