标准对象
Date
<script>
var now=new Date();
console.log(now);//Thu Nov 11 2021 14:44:27 GMT+0800 (中国标准时间)
now.getFullYear();
now.getDate();
now.getMonth();
now.getDate();//日
now.getDay();//星期几
now.getHours();
now.getMinutes();
now.getSeconds();
now.getTime();//时间戳,唯一的,全球统一 1636613067384
console.log(new Date(1636613067384));//用时间戳转换为时间 Thu Nov 11 2021 14:44:27 GMT+0800 (中国标准时间)
</script>
调用本地时区的时间:(注意调用的是一个方法,要加括号,不是属性)