blob: baed7caeeba16f9051dcf41acd1e0f727cc4f76c (
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
|
---
title: Window.console
slug: Web/API/Window/console
tags:
- API
- Property
- Read-only
- Reference
- Window
- console
translation_of: Web/API/Window/console
---
<div>{{APIRef}}</div>
<p><strong><code>Window.console</code></strong> 속성은 브라우저 콘솔에 로그를 남길 수 있는 메서드를 가진 {{domxref("Console")}} 객체의 참조를 반환합니다. 콘솔 메서드는 디버깅 용도로만 사용해야 하며, 엔드유저에게 정보를 제공할 의도를 가져션 안됩니다.</p>
<h2 id="Example" name="Example">예제</h2>
<h3 id="콘솔에_로그_남기기">콘솔에 로그 남기기</h3>
<p>다음 코드는 콘솔에 로그 텍스트를 남깁니다.</p>
<pre class="brush: js">console.log("An error occurred while loading the content");
</pre>
<p>다음 코드는 객체를 콘솔에 출력합니다. 출력 결과를 클릭하면 객체의 필드를 펼쳐볼 수 있습니다.</p>
<pre class="brush: js">console.dir(someObject);</pre>
<p>{{domxref("Console")}} 문서의 <a href="/ko/docs/Web/API/Console#예제">예제</a> 항목에서 더 자세한 예제를 살펴보세요.</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')}}</td>
<td>{{Spec2('Console API')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<div class="note">
<p>현재 브라우저간 구현에 많은 차이가 있지만, 하나로 통합하여 서로 보다 일관적으로 만드는 작업이 진행 중입니다.</p>
</div>
|