JavaScript tips — Measuring performance using console.time()

Pubblicato il: 13 dicembre 2022
sul canale di: Code 2020
964
36

console.time lets you measure the elapsed time between any two points in your code. The elapsed time is then printed to the developer console

To start a timer, simply call console.time(). You can also pass in an optional label to identify the timer

To end a timer, just call console.timeEnd(). If you labeled the timer, you must pass in the same label here. This will then print the elapsed time for the timer to the console

The two calls do not have to be in the same scope. This makes it easy to measure the elapsed time between any two points in your code

#javascript


In questa pagina del sito puoi guardare il video online JavaScript tips — Measuring performance using console.time() della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Code 2020 13 dicembre 2022, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 964 volte e gli è piaciuto 36 spettatori. Buona visione!