月份: 0-11 0或12代表1月 从零开始 月份加1得到实际的月份
星期 :0-6 0代表星期天其他的1-6是正常的
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
let test=new Date(2019,12,31)
console.log(test.toLocaleString()) //2020/1/31 上午12:00:00
console.log(test.getDate()) //当月的天数
let a=new Date(2019,1,1) //开始日期
console.log(a.toLocaleString()) //2019/2/1 上午12:00:00
console.log(a.getDate()) //开始的日期 (日)
let b=new Date(2019,2,0) //结束日期
console.log(b.toLocaleString()) //2019/2/28 上午12:00:00
console.log(b.getDate()) //结束日期 (日)
</script>
</body>
</html>