千鋒web前端開發(fā)項(xiàng)目教程_1000集完全零基礎(chǔ)入門HTML5+CSS3+JS到

創(chuàng)建方式
???1.無參:運(yùn)行時(shí)創(chuàng)建對(duì)象
????var date1 = new Date();
????console.log(date1);
???2.有參:按照日期字符串創(chuàng)建對(duì)象
????var date2 = new Date("2023-06-29,16:26:30")
????console.log(date2);
???3.通過時(shí)間戳創(chuàng)建日期對(duì)象
????時(shí)間戳:距離1970/1/1相差的毫秒數(shù)
?????Date.parse("日期子串"):返回的是該日期的時(shí)間戳
var date = new date();
??console.log(date.getFullYear());//年
??console.log(date.getMonth());//月 0~11
??console.log(date.getDate());//日
??console.log(date.getHours());//時(shí)
??console.log(date.getMinutes());//分
??console.log(date.getSeconds());//分
??console.log(date.getDay());//星期幾 0~6
?setDate()???//改變Date對(duì)象的日期
??setHours()??//改變小時(shí)數(shù)
??setMinutes()??//改變分鐘數(shù)
??setMonth()??//改變?cè)路?,?開始
??setSeconds()??//改變秒數(shù)
??setFullYear()?