aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/console/time/index.html
blob: bcb3777ccbe1d1076ceae546d4fcd8251db04ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: Console.time()
slug: Web/API/Console/time
translation_of: Web/API/Console/time
---
<div>{{APIRef("Console API")}}</div>

<p>타이머를 시작해 작업이 얼마나 걸리는지 추적할 수 있습니다. 각 타이머에게 고유한 이름을 줄 수 있고, 한 페이지에 최대 10,000개의 타이머를 설정할 수 있습니다. 같은 이름으로 {{domxref("console.timeEnd()")}}를 호출할 때, 브라우저가 밀리초 단위로 경과한 시간을 출력합니다.</p>

<p>자세한 내용과 예제는 {{domxref("console")}} 내의 <a href="/ko/docs/Web/API/console#Timers">타이머</a>를 확인하세요.</p>

<p>{{AvailableInWorkers}}</p>

<h2 id="문법">문법</h2>

<pre class="syntaxbox">console.time(<em>label</em>);
</pre>

<h2 id="파라미터">파라미터</h2>

<dl>
 <dt><code>label</code></dt>
 <dd>새 타이머에게 설정할 이름. 타이머를 식별합니다. 같은 이름으로 {{domxref("console.timeEnd()")}}를 호출하면 타이머가 중단되고 콘솔에 시간을 출력합니다.</dd>
</dl>

<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", "#time", "console.time()")}}</td>
   <td>{{Spec2("Console API")}}</td>
   <td>초기 정의</td>
  </tr>
 </tbody>
</table>

<h2 id="브라우저_호환성">브라우저 호환성</h2>



<p>{{Compat("api.Console.time")}}</p>

<h2 id="함께_보기">함께 보기</h2>

<ul>
 <li>{{domxref("Console.timeEnd()")}}</li>
 <li><a class="external" href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></li>
</ul>