files/en-us/web/api/console/timeend_static/index.md
{{APIRef("Console API")}} {{AvailableInWorkers}}
The console.timeEnd() static method stops a timer that was previously started by calling {{domxref("console/time_static", "console.time()")}}.
See Timers in the documentation for details and examples.
console.timeEnd()
console.timeEnd(label)
label {{optional_inline}}
None ({{jsxref("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:
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.
{{Specifications}}
{{Compat}}
console.timeEnd()console.timeEnd()console.timeEnd()