Answers for "moment find next possible date"

1

moment month start date and end date

const startOfMonth = moment().clone().startOf('month').format('YYYY-MM-DD hh:mm');
const endOfMonth   = moment().clone().endOf('month').format('YYYY-MM-DD hh:mm');
Posted by: Guest on May-20-2021
0

how to create date object with specific time in moment js

var date = "2017-03-13";
var time = "18:00";

var timeAndDate = moment(date + ' ' + time);

console.log(timeAndDate);
Posted by: Guest on September-26-2021

Browse Popular Code Answers by Language