// 假設當前時間爲:2018年12月10日
moment(); // 結果:moment("2018-12-10T14:25:00.463")
moment(new Date()); // 結果:moment("2018-12-10T14:25:00.463")
moment("2018-12-10 13:48:36.458"); // 結果:moment("2018-12-10T13:48:36.458")
// 假設當前時間爲:2018年12月10日
// 年
moment().format("YY"); // 結果:18
moment().format("YYYY"); // 結果:2018
moment().format("gg"); // 結果:18
moment().format("gggg"); // 結果:2018
moment().format("GG"); // 結果:18
moment().format("GGGG"); // 結果:2018
// 月
moment().format("M"); // 結果:12
moment().format("MM"); // 結果:12
moment().format("Mo"); // 結果:12月
moment().format("MMM"); // 結果:12月
moment().format("MMMM"); // 結果:十二月
// 日
moment().format("D"); // 結果:10
moment().format("Do"); // 結果:10日
moment().format("DD"); // 結果:10
// 假設當前時間爲:2018年12月10日
// 12小時制
moment().format("h"); // 結果:2
moment().format("hh"); // 結果:02 // 24小時制
moment().format("H"); // 結果:14
moment().format("HH"); // 結果:14
// 分
moment().format("m"); // 結果:55
moment().format("mm"); // 結果:55
// 秒
moment().format("s"); // 結果:5
moment().format("ss"); // 結果:05
// 毫秒
moment().format("S"); // 結果:8
moment().format("SS"); // 結果:87
moment().format("SSS"); // 結果:876
// 顯示當前周幾下標,0:週日、1:周1、2:周2、...、週六:6
moment().format("d"); // 結果:1
// 顯示當前是周幾,如:周1、周2、周3、...
moment().format("ddd"); // 結果:週一
// 顯示當前是星期幾,如:星期1、星期2、星期3、...
moment().format("dddd"); // 結果:星期三
// 假設當前時間爲:2018年12月10日
moment().format("Q"); // 結果:4
// 假設當前時間爲:2018年12月10日
moment().format("DDD"); // 結果:344
moment().format("DDDo"); // 結果:344日
moment().format("DDDD"); // 結果:344
// 假設當前時間爲:2018年12月10日
// Locale:0 1 ... 5 6
moment().format("e"); // 結果:0 // ISO:1 2 ... 6 7
moment().format("E"); // 結果:1
// 假設當前時間爲:2018年12月10日
moment().format("w"); // 結果:50
moment().format("wo"); // 結果:50周
moment().format("ww"); // 結果:50
moment().format("W"); // 結果:50
moment().format("Wo"); // 結果:50周
moment().format("WW"); // 結果:50
// 假設當前時間爲:2018年12月10日
moment().format("A"); // 結果:下午
moment().format("a"); // 結果:下午
// 時間戳(總秒數)
moment().format("X"); // 結果:1544425410 // 總毫秒數
moment().format("x"); // 結果:1544425410853
// 默認時間差爲毫秒
let begin = moment(); let end = moment().add(2,'second'); end.diff(begin); // 結果:2000