xxxxxxxxxx
var startDate = moment().subtract(1, 'days'); //one day before the current time
xxxxxxxxxx
// Import the Moment.js library
const moment = require('moment');
// Get the current date
const currentDate = moment().format('YYYY-MM-DD');
// Print the current date
console.log(currentDate);
xxxxxxxxxx
moment("20111031", "YYYYMMDD").fromNow(); // 10 years ago
moment("20120620", "YYYYMMDD").fromNow(); // 9 years ago
moment().startOf('day').fromNow(); // 15 hours ago
moment().endOf('day').fromNow(); // in 9 hours
moment().startOf('hour').fromNow(); // an hour ago