aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/global_objects/bigint
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/reference/global_objects/bigint')
-rw-r--r--files/ko/web/javascript/reference/global_objects/bigint/prototype/index.html59
1 files changed, 0 insertions, 59 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/bigint/prototype/index.html b/files/ko/web/javascript/reference/global_objects/bigint/prototype/index.html
deleted file mode 100644
index 6ba56eb37e..0000000000
--- a/files/ko/web/javascript/reference/global_objects/bigint/prototype/index.html
+++ /dev/null
@@ -1,59 +0,0 @@
----
-title: BigInt.prototype
-slug: Web/JavaScript/Reference/Global_Objects/BigInt/prototype
-tags:
- - BigInt
- - JavaScript
- - Property
- - Prototype
- - Reference
-translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/prototype
----
-<div>{{JSRef}}</div>
-
-<p><strong><code>BigInt.prototype</code></strong> 속성은 {{jsxref("BigInt")}} 생성자의 프로토타입을 나타냅니다.</p>
-
-<p>{{js_property_attributes(0, 0, 0)}}</p>
-
-<h2 id="설명">설명</h2>
-
-<p>모든 {{jsxref("BigInt")}} 인스턴스는 <code>BigInt.prototype</code>을 상속합니다. <code>BigInt</code> 생성자의 프로토타입 객체를 변형해 모든 <code>BigInt</code> 인스턴스에 영향을 줄 수 있습니다.</p>
-
-<h2 id="속성">속성</h2>
-
-<dl>
- <dt><code>BigInt.prototype.constructor</code></dt>
- <dd>이 객체의 인스턴스를 만들 때 사용한 함수를 반환합니다. 기본값은 {{jsxref("BigInt")}} 객체입니다.</dd>
-</dl>
-
-<h2 id="메서드">메서드</h2>
-
-<dl>
- <dt><code>BigInt.prototype.toLocaleString()</code></dt>
- <dd>BigInt를 주어진 언어에 적합한 형태를 가진 문자열로 변환해 반환합니다. {{jsxref("Object.prototype.toLocaleString()")}} 메서드를 재정의합니다.</dd>
- <dt><code>BigInt.prototype.toString()</code></dt>
- <dd><code>BigInt</code>의 값을 주어진 진수로 표현한 문자열을 반환합니다. {{jsxref("Object.prototype.toString()")}} 메서드를 재정의합니다.</dd>
- <dt><code>BigInt.prototype.valueOf()</code></dt>
- <dd><code>BigInt</code> 객체의 원시 값 표현을 반환합니다. {{jsxref("Object.prototype.valueOf()")}} 메서드를 재정의합니다.</dd>
-</dl>
-
-<h2 id="명세">명세</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- </tr>
- <tr>
- <td><a href="https://tc39.github.io/proposal-bigint/#sec-bigint.prototype">BigInt.prototype</a></td>
- <td>Stage 3</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="브라우저_호환성">브라우저 호환성</h2>
-
-<div class="hidden">To contribute to this compatibility data, please write a pull request against this repository: <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>.</div>
-
-<p>{{Compat("javascript.builtins.BigInt.prototype")}}</p>