xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript new Date(year - 基础教程(div.cn)</title>
<body>
<h1>new Date(<i>year, month, </i>)</h1>
<p> 7个数字指定年,月,日,时,分,秒和毫秒(按此顺序):</p>
<script>
let d = new Date(2019, 0, 26, 10, 40, 30, 0); // 日期和 时间方法
document.write(d);
</script>
</body>
</html>