aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/window/console/index.html
blob: 69014589220d7a8d20447ed8b3ab7e6570d98239 (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
translation_of: Web/API/Window/console
---
<p>{{ APIRef }}</p>

<p>Свойство <strong><code>window.console</code></strong> даёт доступ к интерфейсу {{domxref("Console")}}, предоставляющий методы для вывода информации в консоль браузера. Данные методы предназначены для отладки приложения, и не должны использоваться конечными пользователями.</p>

<h2 id="Syntax" name="Syntax">Синтаксис</h2>

<pre class="syntaxbox"><em>var consoleObj</em> = <em>window</em>.console;
</pre>

<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>Примеры можно посмотреть по ссылке: {{SectionOnPage("/ru/docs/Web/API/Console", "Usage")}}</p>

<p> </p>

<p> </p>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('Console API')}}</td>
   <td>{{Spec2('Console API')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<div class="note">
<p>Currently there are many implementation differences among browsers, but work is being done to bring them together and make them more consistent with one another.</p>
</div>