


js 时间格式化(ES6语法)
¥
参考价格
产品编号 908
浏览次数 10 次
上架时间 -
库存状态 暂无库存
产品介绍
formatNumber = n => {
n = n.toString()
return n[1] ? n : '0' + n
}
// 时间格式化
formatTime = date => {
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
const hour = date.getHours()
const minute = date.getMinutes()
const second = date.getSeconds()
return [year, month, day].map(formatNumber).join('-') + ' ' + [hour, minute, second].map(formatNumber).join(':')
}
使用:
formatTime(new Date())

