两行js代码实现时间戳格式化
作者:互联网
//时间戳 格式化,toJSON转格林威治时间 +8小时 就是北京时间
function dateTime(time = +new Date()) {
var date = new Date(time + 8 * 3600 * 1000);
return date.toJSON().substr(0, 19).replace('T', ' ').replace(/-/g, '.');
}
内容来自: https://segmentfault.com/a/1190000015992232
标签:两行,格式化,js,replace,date,time,Date,new,toJSON 来源: https://www.cnblogs.com/---Briven/p/11245828.html