Skip to content

Measure Execution Time With console.time

View on Twitter

💡 Need to find out how long a section of code or external request takes to complete?

👉🏼 A way to quickly measure this is to use console.time & console.timeEnd.

To start the timer, use console.time('fetch'). console.timeEnd('fetch') ends the timer and outputs the time in milliseconds.
You might also like
TypeScript Declarations for NPM Packages Read tip
101 Ways to Make Your Website More Awesome Read tip
Cron Jobs With Github Actions Read tip