aboutsummaryrefslogtreecommitdiff
path: root/files/ko/orphaned/web/javascript/reference/global_objects/bigint
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-07 21:57:08 -0400
committerGitHub <noreply@github.com>2021-07-08 10:57:08 +0900
commit0d13feed6a627047449d99af02d1fb55bbfad1a9 (patch)
treebb7efedc3137bfea1c69f510617b602009d58b3d /files/ko/orphaned/web/javascript/reference/global_objects/bigint
parentff9ea0cf9f0ea6217deefa7ad0dba35bf7f6c45e (diff)
downloadtranslated-content-0d13feed6a627047449d99af02d1fb55bbfad1a9.tar.gz
translated-content-0d13feed6a627047449d99af02d1fb55bbfad1a9.tar.bz2
translated-content-0d13feed6a627047449d99af02d1fb55bbfad1a9.zip
delete conflicting/orphaned in ko (#1423)
* delete conflicting/orphaned in ko * forgot the redirects
Diffstat (limited to 'files/ko/orphaned/web/javascript/reference/global_objects/bigint')
-rw-r--r--files/ko/orphaned/web/javascript/reference/global_objects/bigint/prototype/index.html58
1 files changed, 0 insertions, 58 deletions
diff --git a/files/ko/orphaned/web/javascript/reference/global_objects/bigint/prototype/index.html b/files/ko/orphaned/web/javascript/reference/global_objects/bigint/prototype/index.html
deleted file mode 100644
index 7030f4daf3..0000000000
--- a/files/ko/orphaned/web/javascript/reference/global_objects/bigint/prototype/index.html
+++ /dev/null
@@ -1,58 +0,0 @@
----
-title: BigInt.prototype
-slug: orphaned/Web/JavaScript/Reference/Global_Objects/BigInt/prototype
-tags:
- - BigInt
- - JavaScript
- - Property
- - Prototype
- - Reference
-translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/prototype
-original_slug: 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>
-
-<p>{{Compat("javascript.builtins.BigInt.prototype")}}</p>