From 87990b6bf559dd76dd65cefc2b112daacad9962a Mon Sep 17 00:00:00 2001 From: iamgamja Date: Wed, 9 Feb 2022 12:48:58 +0900 Subject: rename --- files/ko/web/api/console/trace/index.html | 77 ------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 files/ko/web/api/console/trace/index.html (limited to 'files/ko/web/api/console/trace/index.html') diff --git a/files/ko/web/api/console/trace/index.html b/files/ko/web/api/console/trace/index.html deleted file mode 100644 index 2726eca0d4..0000000000 --- a/files/ko/web/api/console/trace/index.html +++ /dev/null @@ -1,77 +0,0 @@ ---- -title: console.trace() -slug: Web/API/Console/trace -tags: - - API - - DOM - - Firefox - - 디버깅 - - 메소드 - - 웹 개발 - - 웹 콘솔 - - 추적 - - 콘솔 - - 크롬 -translation_of: Web/API/Console/trace ---- -
{{APIRef("Console API")}}
- -

웹 콘솔에 스택 추적을 출력합니다.

- -

{{AvailableInWorkers}}

- -

자세한 내용과 예제는 {{domxref("console")}} 내의 스택 추적을 확인하세요.

- -

문법

- -
console.trace();
-
- -

예제

- -
function foo() {
-  function bar() {
-    console.trace();
-  }
-  bar();
-}
-
-foo();
-
- -

콘솔에 다음과 같은 추적이 표시됩니다.

- -
bar
-foo
-<anonymous>
- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#trace", "console.trace()")}}{{Spec2("Console API")}}초기 정의
- -

브라우저 호환성

- - - -

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

- -

함께 보기

- - -- cgit v1.2.3-54-g00ecf