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
|
---
title: ReferenceError
slug: Web/JavaScript/Reference/Global_Objects/ReferenceError
tags:
- Error
- JavaScript
- Object
- Reference
- ReferenceError
translation_of: Web/JavaScript/Reference/Global_Objects/ReferenceError
---
<div>{{JSRef}}</div>
<p>Объект <code><strong>ReferenceError</strong></code> представляет ошибку, возникающую при обращении к несуществующей переменной.</p>
<h2 id="Синтаксис">Синтаксис</h2>
<pre class="syntaxbox"><code>new ReferenceError([<var>message</var>[, <var>fileName</var>[, <var>lineNumber</var>]]])</code></pre>
<h3 id="Параметры">Параметры</h3>
<dl>
<dt><code>message</code></dt>
<dd>Необязательный параметр. Человеко-читаемое описание ошибки</dd>
<dt><code>fileName</code> {{non-standard_inline}}</dt>
<dd>Необязательный параметр. Имя файла, содержащего код, вызвавший исключение</dd>
<dt><code>lineNumber</code> {{non-standard_inline}}</dt>
<dd>Необязательный параметр. Номер строки кода, вызвавшей исключение</dd>
</dl>
<h2 id="Описание">Описание</h2>
<p>Исключение <code>ReferenceError</code> выбрасывается при попытке обратиться к переменной, которая не была объявлена.</p>
<h2 id="Свойства">Свойства</h2>
<dl>
<dt>{{jsxref("ReferenceError.prototype")}}</dt>
<dd>Позволяет добавлять свойства в объект <code>ReferenceError</code>.</dd>
</dl>
<h2 id="Методы">Методы</h2>
<p>Глобальный объект <code>ReferenceError</code> не содержит собственных методов, однако, он наследует некоторые методы из цепочки прототипов.</p>
<h2 id="Экземпляры_объекта_ReferenceError">Экземпляры объекта <code>ReferenceError</code></h2>
<h3 id="Свойства_2">Свойства</h3>
<div>{{page('/ru/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError/prototype', 'Properties')}}</div>
<h3 id="Методы_2">Методы</h3>
<div>{{page('/ru/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError/prototype', 'Methods')}}</div>
<h2 id="Примеры">Примеры</h2>
<h3 id="Перехват_ReferenceError">Перехват <code>ReferenceError</code></h3>
<pre class="brush: js">try {
var a = undefinedVariable;
} catch (e) {
console.log(e instanceof ReferenceError); // true
console.log(e.message); // "undefinedVariable is not defined"
console.log(e.name); // "ReferenceError"
console.log(e.fileName); // "Scratchpad/1"
console.log(e.lineNumber); // 2
console.log(e.columnNumber); // 6
console.log(e.stack); // "@Scratchpad/2:2:7\n"
}
</pre>
<h3 id="Выбрасывание_ReferenceError">Выбрасывание <code>ReferenceError</code></h3>
<pre class="brush: js">try {
throw new ReferenceError('Привет', 'someFile.js', 10);
} catch (e) {
console.log(e instanceof ReferenceError); // true
console.log(e.message); // "Привет"
console.log(e.name); // "ReferenceError"
console.log(e.fileName); // "someFile.js"
console.log(e.lineNumber); // 10
console.log(e.columnNumber); // 0
console.log(e.stack); // "@Scratchpad/2:2:9\n"
}
</pre>
<h2 id="Спецификации">Спецификации</h2>
{{Specifications}}
<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2>
<div>
<p>{{Compat}}</p>
</div>
<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li>{{jsxref("Error")}}</li>
<li>{{jsxref("ReferenceError.prototype")}}</li>
</ul>
|