JS 获取当前 年月日
1JS 获取当前 年月日
可以使用 JavaScript 的 Date 对象来获取当前年月日:

```
const today = new Date();
const year = today.getFullYear();
const month = today.getMonth() + 1; // 月份从0开始,需要加1
const day = today.getDate();

console.log(`${year}-${month}-${day}`);
```
本页由《梦行文档》生成

 

name完成
30