Date.now() 返回自 1970 年 1 月 1 日 00:00:00 (UTC) 到当前时间的毫秒数。
console.log(Date.now());
输出:1623740295900
类型为 number,
toString() 方法返回 string 类型。
Date.now() 返回自 1970 年 1 月 1 日 00:00:00 (UTC) 到当前时间的毫秒数。
console.log(Date.now());
输出:1623740295900
类型为 number,
toString() 方法返回 string 类型。