diff options
author | iamgamja <hmmthinking@naver.com> | 2022-02-09 12:48:58 +0900 |
---|---|---|
committer | Sungwoo Park <codest99@gmail.com> | 2022-02-20 18:36:04 +0900 |
commit | 87990b6bf559dd76dd65cefc2b112daacad9962a (patch) | |
tree | 1f0ca56db2492887039b8258e1fd9ca32b92c377 /files/ko/web/api/console/trace/index.html | |
parent | 3343d5d346b34d0799894a607f990a6766e987f5 (diff) | |
download | translated-content-87990b6bf559dd76dd65cefc2b112daacad9962a.tar.gz translated-content-87990b6bf559dd76dd65cefc2b112daacad9962a.tar.bz2 translated-content-87990b6bf559dd76dd65cefc2b112daacad9962a.zip |
rename
Diffstat (limited to 'files/ko/web/api/console/trace/index.html')
-rw-r--r-- | files/ko/web/api/console/trace/index.html | 77 |
1 files changed, 0 insertions, 77 deletions
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 ---- -<div>{{APIRef("Console API")}}</div> - -<p><a href="/en-US/docs/Tools/Web_Console">웹 콘솔</a>에 스택 추적을 출력합니다.</p> - -<p>{{AvailableInWorkers}}</p> - -<p>자세한 내용과 예제는 {{domxref("console")}} 내의 <a href="/ko/docs/Web/API/console#Stack_traces">스택 추적</a>을 확인하세요.</p> - -<h2 id="문법">문법</h2> - -<pre class="syntaxbox">console.trace(); -</pre> - -<h2 id="예제">예제</h2> - -<pre class="brush: js">function foo() { - function bar() { - console.trace(); - } - bar(); -} - -foo(); -</pre> - -<p>콘솔에 다음과 같은 추적이 표시됩니다.</p> - -<pre>bar -foo -<anonymous></pre> - -<h2 id="명세">명세</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Specification</th> - <th scope="col">Status</th> - <th scope="col">Comment</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName("Console API", "#trace", "console.trace()")}}</td> - <td>{{Spec2("Console API")}}</td> - <td>초기 정의</td> - </tr> - </tbody> -</table> - -<h2 id="브라우저_호환성">브라우저 호환성</h2> - - - -<p>{{Compat("api.Console.trace")}}</p> - -<h2 id="함께_보기">함께 보기</h2> - -<ul> - <li><a class="external" href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></li> -</ul> |