## 簡易的な方法 `performance.now()`を使う。 ```js const start = performance.now() // 計測したい処理 console.log(performance.now() - start) ```