js获取本年的起止时间
时间: 2023-10-20 13:12:31 浏览: 91
ASP.NET获取本天、周、月、年的起止时间
5星 · 资源好评率100%
可以使用下面的代码来获取本年的起止时间:
```javascript
// 获取当前时间
const now = new Date();
// 获取本年的年份
const year = now.getFullYear();
// 获取本年的起始时间
const startOfYear = new Date(`${year}-01-01T00:00:00`);
// 获取本年的结束时间
const endOfYear = new Date(`${year}-12-31T23:59:59`);
console.log(startOfYear); // 输出:Tue Jan 01 2021 00:00:00 GMT+0800 (中国标准时间)
console.log(endOfYear); // 输出:Fri Dec 31 2021 23:59:59 GMT+0800 (中国标准时间)
```
这段代码中,首先获取当前时间,然后使用 `getFullYear()` 方法获取当前年份。接着,通过字符串拼接的方式构造本年的起始时间和结束时间,最后将它们转换成 `Date` 对象。
阅读全文