moment get date time now code example
Example 1: how to get current time using moment
var startDate = moment().subtract(1, 'days'); //one day before the current time
Example 2: moment.js get time from now
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