Answers for "import * as moment from 'moment';"

8

format a date moment

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

import * as moment from 'moment';

npm install moment-strftime
Posted by: Guest on April-09-2021
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

Browse Popular Code Answers by Language