js获取当前时间yyyymmdd
时间: 2023-11-16 20:56:09 浏览: 90
js获取当前时间
可以使用以下代码来获取当前时间的yyyymmdd格式:
```
const currentDate = new Date();
const year = currentDate.getFullYear();
const month = String(currentDate.getMonth() + 1).padStart(2, '0');
const day = String(currentDate.getDate()).padStart(2, '0');
const formattedDate = `${year}${month}${day}`;
console.log(formattedDate);
```
这段代码会获取当前日期并将其格式化为yyyymmdd格式,然后输出到控制台。
阅读全文