moment get current time code example

Example 1: javascript get time ago with moment

const dateTimeAgo = moment("2020-04-04 11:45:26.123").fromNow();
console.log(dateTimeAgo); //> 6 minutes ago

Example 2: moment set time

const date = "2017-03-13";
const time = "18:00";

const timeAndDate = moment(date + ' ' + time);

console.log(timeAndDate);

Example 3: momentjs utcoffset

moment().utcOffset()    // will output 60 (for example)

Example 4: how to get current time using moment

var startDate = moment().subtract(1, 'days'); //one day before the current time

Example 5: moment get day

var check = moment(n.entry.date_entered, 'YYYY/MM/DD');

var month = check.format('M');
var day   = check.format('D');
var year  = check.format('YYYY');