--- title: Console.timeEnd() slug: Web/API/Console/timeEnd tags: - 디버깅 - 웹 개발 - 웹 콘솔 - 콘솔 - 타이머 translation_of: Web/API/Console/timeEnd ---
{{APIRef("Console API")}}
이전에 {{domxref("console.time()")}}를 호출하여 시작된 타이머를 중지하고 웹 콘솔에 경과 시간을 밀리초 단위로 표시합니다.
 
자세한 내용과 예제는 콘솔 문서의 Timers를 참조하세요.
 

{{AvailableInWorkers}}

구문(Syntax)

console.timeEnd(label);

매개 변수(Parameters)

label
중지할 타이머의 이름입니다. console.time()를 호출할 때의 이름을 사용하여 해당 타이머를 중지할 수 있는 식별자 역할을 합니다.

명세서(Specifications)

Specification Status Comment
{{SpecName("Console API", "#timeend", "console.timeEnd()")}} {{Spec2("Console API")}} Initial definition

브라우저 호환성(Browser compatibility)

{{Compat("api.Console.timeEnd")}}

함께 보기(See also)