Answers for "add time to moment date"

2

momentjs date and time string add minutes

moment(date, "DD-MM-YYYY hh:mm:ss")
                        .add(10, 'minutes')
                        .format('DD/MM/YYYY hh:mm:ss');
Posted by: Guest on May-28-2021
6

moment js add day

var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
Posted by: Guest on May-15-2020
0

moment set time

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

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

console.log(timeAndDate);
Posted by: Guest on September-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language