Answers for "moment js remove days"

3

moment subtract days

var startdate = moment();
startdate = startdate.subtract(1, "days");
startdate = startdate.format("DD-MM-YYYY");
Posted by: Guest on July-01-2020
1

moment js subtract years

let min_date = moment().subtract(18, 'years');
Posted by: Guest on November-19-2020
0

how to remove minutes with moment js

const moment = require('moment-timezone');
// it substract 5 minutes in the current time
moment().subtract(5, 'minutes');
Posted by: Guest on April-25-2021

Browse Popular Code Answers by Language