dayjs获取当前年度
时间: 2024-02-21 21:51:29 浏览: 102
JS获取当前时间日期
Day.js可以使用startOf方法结合'year'单位来获取当前年度的起始日期。以下是一个示例代码:
```javascript
const dayjs = require('dayjs');
// 获取当前年度的起始日期
const currentYearStart = dayjs().startOf('year');
console.log(currentYearStart.format('YYYY-MM-DD'));
```
阅读全文