moment().toDate();
//date time to date momentjs
var support_date = new Date("2021-10-23 00:00:00");
support_date = moment(support_date).format("YYYY-MM-DD");
//output:"2021-10-23"
moment( moment().utc().format( "YYYY-MM-DD HH:mm:ss" )).toDate()
moment('2016-10-11T14:36:03+02:00').format("x"); // output : 1476189363
moment.toDate()