I want to get the Unix TimeStamp using Moment.js. I can find many functions which convert timestamp to date in moment.js. I know that I can easily get the unix timestamp by usin
Try any of these
valof = moment().valueOf(); // xxxxxxxxxxxxx getTime = moment().toDate().getTime(); // xxxxxxxxxxxxx unixTime = moment().unix(); // xxxxxxxxxx formatTimex = moment().format('x'); // xxxxxxxxxx unixFormatX = moment().format('X'); // xxxxxxxxxx