原生js时间戳获取和转换

Posted 易函123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原生js时间戳获取和转换相关的知识,希望对你有一定的参考价值。

时间转变为时间戳的方法汇总

const date = new Date(\'2021-4-12 08:22:22\');
console.log(date); // Mon Apr 12 2021 08:22:22 GMT+0800 (中国标准时间)
console.log(date * 1); //1618186942000
console.log(Number(date)); // 1618186942000
console.log(date.valueOf());  // 1618186942000
console.log(date.getTime()); // 1618186942000

转回标准时间

const date = new Date(\'2021-4-12 08:22:22\');
const timestamp = date.valueOf();
console.log(new Date(timestamp));  // Mon Apr 12 2021 08:22:22 GMT+0800 (中国标准时间)

原生js时间戳获取和转换

以上是关于原生js时间戳获取和转换的主要内容,如果未能解决你的问题,请参考以下文章

移动端js怎么时间格式转换成时间戳

vue.js怎样将时间戳转化为日期格式

js怎么把时间戳转换成几分钟几小时前

js中怎么样时间格式转成时间戳

js 怎么取到时间戳里面的月份?

js如何返回当天零点的时间戳?