1. 程式人生 > >時間與日期————呱呱二號

時間與日期————呱呱二號

new minutes utc div class 當前時間 switch 都是 星期

常用:

let date = new Date();  //獲取當前時間毫秒數

date.getFullYear();

date.getMonth();  //月份加一

date.getDate();  //日期

date.getDay();  //星期,0~6,使用switch轉換‘星期幾‘

date.getHours();

date.getMinutes();

date.getSeconds();

date.getTime()  //getTime() 方法可返回距 1970 年 1 月 1 日之間的毫秒數。

存在UTC的獲取的都是格林尼治時間

時間與日期————呱呱二號