From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- .../global_objects/referenceerror/index.html | 129 +++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 files/ko/web/javascript/reference/global_objects/referenceerror/index.html (limited to 'files/ko/web/javascript/reference/global_objects/referenceerror') diff --git a/files/ko/web/javascript/reference/global_objects/referenceerror/index.html b/files/ko/web/javascript/reference/global_objects/referenceerror/index.html new file mode 100644 index 0000000000..ed5fee8c48 --- /dev/null +++ b/files/ko/web/javascript/reference/global_objects/referenceerror/index.html @@ -0,0 +1,129 @@ +--- +title: ReferenceError +slug: Web/JavaScript/Reference/Global_Objects/ReferenceError +translation_of: Web/JavaScript/Reference/Global_Objects/ReferenceError +--- +
{{JSRef}}
+ +
+

ReferenceError 객체는 존재하지 않는 변수를 참조했을 때 발생하는 에러를 나타냅니다.

+
+ +

문법

+ +
new ReferenceError([message[, fileName[, lineNumber]]])
+ +

파라미터

+ +
+
message
+
선택사항. 에러에 대한 설명문
+
fileName {{non-standard_inline}}
+
선택사항. 예외가 발생한 코드를 포함하는 파일의 이름
+
lineNumber {{non-standard_inline}}
+
선택사항. 예외가 발생한 코드의 줄 번호
+
+ +

설명

+ +

ReferenceError는 선언된 적이 없는 변수를 참조하려고 할 때 발생합니다.

+ +

프로퍼티

+ +
+
{{jsxref("ReferenceError.prototype")}}
+
ReferenceError 객체에 프로퍼티를 추가할 수 있습니다.
+
+ +

메서드

+ +

전역 ReferenceError는 메서드를 가지고 있지 않습니다. 그러나 상속 관계에서 프로토타입 체인을 통해 일부 메서드를 가질 수 있습니다.

+ +

ReferenceError 인스턴스

+ +

프로퍼티

+ +
{{page('/ko-KR/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError/prototype', 'Properties')}}
+ +

메서드

+ +
{{page('/ko-KR/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError/prototype', 'Methods')}}
+ +

예제

+ +

ReferenceError 처리하기

+ +
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"
+}
+
+ +

ReferenceError 생성하기

+ +
try {
+  throw new ReferenceError('Hello', 'someFile.js', 10);
+} catch (e) {
+  console.log(e instanceof ReferenceError); // true
+  console.log(e.message);                   // "Hello"
+  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"
+}
+
+ +

명세

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('ES3')}}{{Spec2('ES3')}}Initial definition.
{{SpecName('ES5.1', '#sec-15.11.6.3', 'ReferenceError')}}{{Spec2('ES5.1')}} 
{{SpecName('ES6', '#sec-native-error-types-used-in-this-standard-referenceerror', 'ReferenceError')}}{{Spec2('ES6')}} 
{{SpecName('ESDraft', '#sec-native-error-types-used-in-this-standard-referenceerror', 'ReferenceError')}}{{Spec2('ESDraft')}} 
+ +

브라우저 호환성

+ +
+ + +

{{Compat("javascript.builtins.ReferenceError")}}

+
+ +

참고

+ + -- cgit v1.2.3-54-g00ecf