performance.now() vs Date.now()

 

如圖

 

一、performance.now()

1、具有小數點,從 page load 的時候從零開始計數。

2、支援 IE10 以上。

 

二、Date.now()

1、從 1970/01/01 00:00:00 UTC 開始計數,以毫秒為單位。

 

參考資料:

When milliseconds are not enough: performance.now

Date

performance.now()

High Resolution Time Level 2