| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/en-US/docs/Web/API/console/timeend_static | [Back] [Original] |
Get to know MDN better
This feature is well established and works across many devices and browser versions. Its been available across browsers since July 2015.
Note: This feature is available in Web Workers.
The console.timeEnd() static method stops a timer that was previously started by calling console.time().
See Timers in the documentation for details and examples.
console.timeEnd()
console.timeEnd(label)
label OptionalA string representing the name of the timer to stop. Once stopped, the elapsed time is automatically displayed in the console along with an indicator that the time has ended. If omitted, the label "default" is used.
None (undefined).
console.time("answer time");
alert("Click to continue");
console.timeLog("answer time");
alert("Do a bunch of other stuff");
console.timeEnd("answer time");
The output from the example above shows the time taken by the user to dismiss the first alert box, followed by the cumulative time it took for the user to dismiss both alerts:
[Timer output in Firefox console]
Notice that the timer's name is displayed when the timer value is logged using console.timeLog() and again when it's stopped. In addition, the call to console.timeEnd() has the additional information, "timer ended" to make it obvious that the timer is no
longer tracking time.
| Specification |
|---|
| Console # timeend |
console.timeLog() for additional examplesconsole.time()console.timeEnd()console.timeEnd()console.timeEnd()This page was last modified on Jul 4, 2025 by MDN contributors.
Your blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |