Node--获取当前时间并格式化
程序员文章站
2022-05-30 14:05:12
...
- 安装
yarn add moment
- 使用
const moment = require('moment')
let currentTime = moment(Date.now()).format('YYYY-MM-DD HH:mm:ss')
console.log(currentTime)