Answers for "moment js iso 8601"

0

how to get iso date with moment

moment().toISOString(); // or format() - see below
Posted by: Guest on April-26-2020
8

format a date moment

moment(testDate).format('MM/DD/YYYY');
Posted by: Guest on December-18-2019
2

moment format heure

var time = "15:30:00";
var formatted = moment(time, "HH:mm:ss").format("LT");
console.log(formatted); 
//it will return 3:30 PM
Posted by: Guest on May-06-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language