Answers for "moment format 23 hour"

0

moment format 23 hour

let dt = moment();
dt.format("HH:mm") // 24 hour time
dt.format("hh:mm a") // 12 hour time (with am/pm)
Posted by: Guest on May-30-2021
0

convert 24 hour to 12 hour moment js

moment("15", "hh").format('LT')
Posted by: Guest on May-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language