How do I display my time in 24h format instead of 12?
I am using moment.js.
I am pretty sure that these lines could have something to do with it.
<
Try: moment({ // Options here }).format('HHmm'). That should give you the time in a 24 hour format.
moment({ // Options here }).format('HHmm')