new Date().getTime(); 转为几点的格式
时间: 2024-05-06 07:20:36 浏览: 72
DateTime格式化
这个函数返回的是当前时间距离1970年1月1日00:00:00 UTC的毫秒数,需要使用Date对象的方法将其转换为可读的时间格式。
可以使用以下代码将其转换为24小时制的时间格式:
```
const timestamp = new Date().getTime();
const date = new Date(timestamp);
const hours = date.getHours();
const minutes = date.getMinutes();
const seconds = date.getSeconds();
const time = `${hours}:${minutes}:${seconds}`;
console.log(time);
```
输出的格式为:HH:mm:ss,例如:14:30:45。
阅读全文