blob: 0040da4c1156b0279c2bc162b6310a13c10fb7cc (
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
|
---
title: console.count()
slug: Web/API/Console/count
tags:
- API
- DOM
- Method
- Reference
translation_of: Web/API/Console/count
---
<div>{{APIRef("Console API")}}</div>
<p><strong><code>console.count()</code></strong> 메서드는 특정 <code>count()</code> 호출의 횟수를 세어 출력합니다.</p>
<p>{{AvailableInWorkers}}</p>
<h2 id="구문">구문</h2>
<pre class="syntaxbox">console.count(<var>[label]</var>);</pre>
<h3 id="매개변수">매개변수</h3>
<dl>
<dt><code>label</code> {{Optional_Inline}}</dt>
<dd>{{jsxref("String")}}. 지정한 경우, 이 레이블을 지정한 count() 호출의 수를 출력합니다. 누락한 경우 <code>"default"</code>를 지정한 것처럼 동작합니다.</dd>
</dl>
<h2 id="예제">예제</h2>
<pre class="brush: js; highlight[4, 13]">let user = "";
function greet() {
console.count();
return "hi " + user;
}
user = "bob";
greet();
user = "alice";
greet();
greet();
console.count();</pre>
<p>위 코드의 출력 결과는 다음과 같은 형태입니다.</p>
<pre class="brush: none;">"default: 1"
"default: 2"
"default: 3"
"default: 4"</pre>
<p>레이블을 명시하지 않았기 때문에 <code>default</code>로 나타납니다.</p>
<p>첫 번째 <code>count()</code>의 매개변수에는 <code>user</code> 변수를 제공하고, 두 번째에는 문자열 <code>"alice"</code>를 제공할 경우...</p>
<pre class="brush: js; highlight[4, 13]">let user = "";
function greet() {
console.count(user);
return "hi " + user;
}
user = "bob";
greet();
user = "alice";
greet();
greet();
console.count("alice");</pre>
<p>다음과 같이 출력합니다.</p>
<pre class="brush: none;">"bob: 1"
"alice: 1"
"alice: 2"
"alice: 3"</pre>
<dl>
</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", "#count", "console.count()")}}</td>
<td>{{Spec2("Console API")}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("api.Console.count")}}</p>
|