momentjs get timestamp code example

Example 1: moment get timestamp

moment().unix() // you will get a unix timestamp

moment().valueOf() // you will get a full timestamp

Example 2: moment js print date

moment(testDate).format('MM/DD/YYYY');

Example 3: moment get timestamp

var CurrentDate = moment().valueOf();

Example 4: moment.set

moment().set('year', 2013);
moment().set('month', 3);  // April
moment().set('date', 1);
moment().set('hour', 13);
moment().set('minute', 20);
moment().set('second', 30);
moment().set('millisecond', 123);

moment().set({'year': 2013, 'month': 3});