nodejs获取当前时间
时间: 2024-02-23 08:55:15 浏览: 145
nodejs如何获取时间戳与时间差
在Node.js中,可以使用内置的`Date`对象来获取当前时间。以下是获取当前时间的示例代码:
```javascript
const currentDate = new Date();
console.log(currentDate);
```
上述代码将创建一个`Date`对象,并将其赋值给`currentDate`变量。然后,可以使用`console.log()`函数将当前时间打印到控制台。
如果你只想获取当前时间的字符串表示,可以使用`toLocaleString()`方法或其他日期格式化库来格式化日期对象。例如:
```javascript
const currentDate = new Date();
const formattedDate = currentDate.toLocaleString();
console.log(formattedDate);
```
这将打印出当前时间的字符串表示,例如:"2022/01/01 下午1:23:45"。
阅读全文