Moment.js 常用转换

http://momentjs.cn/docs/#/parsing/


var now = moment();
moment().format()  
moment().format('YYYY-MM-DD')     // "2019-09-20"
moment("2019-09-20").format('X')      //"1568908800"


moment.unix(1568908800).format( )   //"2019-09-20T00:00:00+08:00"

moment.unix(1568908800).format('YYYY-MM-DD')  //   "2019-09-20"

moment('2010-10-20').isAfter('2010-10-19'); // true

你可能感兴趣的:(Moment.js 常用转换)