Answers for "how to concat time in date time in moment"

1

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
10

moment date add

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

moment format a date into different format

moment(yourDate).format('MM/DD/YYYY');
Posted by: Guest on June-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language