blob: 30e6d3ee950e80f0ac338a1f353e5092b5b5819c (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
---
title: Console.countReset()
slug: Web/API/Console/countReset
tags:
- API
- DOM
- Method
- Reference
- console
translation_of: Web/API/Console/countReset
---
<div>{{APIRef("Console API")}}</div>
<p><strong><code>console.countReset()</code></strong> 메서드는 {{domxref("console.count()")}}의 카운터를 초기화합니다.</p>
<p>{{AvailableInWorkers}}</p>
<h2 id="구문">구문</h2>
<pre class="syntaxbox">console.countReset(<var>[label]</var>);
</pre>
<h3 id="매개변수">매개변수</h3>
<dl>
<dt><code>label</code> {{optional_inline}}</dt>
<dd>{{jsxref("String")}}. 지정한 경우, 이 레이블을 지정한 <code>count()</code>를 초기화합니다. 누락한 경우 <code>"default"</code> 카운터를 초기화합니다.</dd>
</dl>
<h2 id="예제">예제</h2>
<pre class="brush: js">let user = "";
function greet() {
console.count();
return "hi " + user;
}
user = "bob";
greet();
user = "alice";
greet();
greet();
console.count();
console.countReset();</pre>
<p>위 코드의 출력 결과는 다음과 같은 형태입니다.</p>
<pre class="eval">"default: 1"
"default: 2"
"default: 3"
"default: 4"
"default: 0"
</pre>
<p><code>countReset()</code>이 기본 카운터를 초기화했음을 알 수 있습니다.</p>
<p>레이블을 지정한 경우...</p>
<pre class="brush: js">let user = "";
function greet() {
console.count(user);
return "hi " + user;
}
user = "bob";
greet();
user = "alice";
greet();
greet();
console.countReset("bob");
console.count("alice");</pre>
<p>다음과 같이 출력합니다.</p>
<pre class="eval">"bob: 1"
"alice: 1"
"alice: 2"
"bob: 0"
"alice: 3"</pre>
<p>카운터 <code>bob</code>을 초기화해도 <code>alice</code>의 값에는 영향이 없습니다.</p>
<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", "#count", "console.countReset()")}}</td>
<td>{{Spec2("Console API")}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("api.Console.countReset")}}</p>
|