Answers for "moment format hhc mm"

8

moment format date dd/mm/yyyy

moment(new Date()).format("DD/MM/YYYY")
Posted by: Guest on November-11-2020
1

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language