Date對象是JavaScript中重要的時間處理對象,它可以表示一個特定的日期和時間。Date對象由當前時間的毫秒數來創建,它提供了各種方法來操作和格式化日期和時間。
// 創建當前時間的Date對象 let currentDate = new Date(); console.log(currentDate); // 輸出當前日期和時間 // 格式化日期和時間 console.log(currentDate.getFullYear()); // 輸出年份 console.log(currentDate.getMonth() + 1); // 輸出月份 (從0開始,需要加1) console.log(currentDate.getDate()); // 輸出當前日期 console.log(currentDate.getHours()); // 輸出當前小時數 console.log(currentDate.getMinutes()); // 輸出當前分鐘數 console.log(currentDate.getSeconds()); // 輸出當前秒數 console.log(currentDate.getMilliseconds()); // 輸出當前毫秒數 console.log(currentDate.getTimezoneOffset()); // 輸出當前時區偏移量 // 創建指定日期和時間的Date對象 let customDate = new Date(2022, 0, 1, 12, 30, 0); // 2022年1月1日12點30分 console.log(customDate); // 輸出指定日期和時間
通過Date對象的各種方法,我們可以很方便地獲取當前時間和指定時間的各種信息,也可以對它們進行各種操作和格式化。
下一篇vue2.0監聽