moment set hours and minutes code example
Example 1: moment hour minute
moment().format('HH:mm:ss')
Example 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');