moment.js時間戳與時間相互轉換
時間:var time = new Date(); // Tue Aug 28 2018 09:16:06 GMT+0800 (中國標准時間)
時間戳:var timestamp = Date.parse(time); // 1535419062000 (Date.parse() 默認不取毫秒,即后三位毫秒為0)
moment轉時間:moment(time).valueOf(); // 1535419062126
moment轉時間戳:moment(timestamp).format(); // 2018-08-28T09:17:42+08:00