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
Skip to Content Link Read tip
setTimeout Execution Time Read tip
Check If Port Is Open to Public Read tip