Folks,
I am trying to understand the MomentJS API. What is the appropriate way to get the current time on the machine?
var CurrentDate = moment(); <
moment().unix() you will get a unix timestamp
moment().unix()
moment().valueOf() you will get a full timestamp
moment().valueOf()