From 86792571ae1a21a1e4bf526747d6dd1c2636d167 Mon Sep 17 00:00:00 2001 From: alattalatta Date: Sat, 14 Aug 2021 15:57:42 +0900 Subject: Clean up JS reference documents (#1818) * Clean up JavaScript references HTML code - Remove inline styles - Remove elements - Remove title attribute * Remove sup/sub from JavaScript reference * Remove name attrs from JavaScript reference * Remove legacy browser compat elements * Remove duplicate browser-compat key --- .../ko/web/javascript/reference/global_objects/bigint/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'files/ko/web/javascript/reference/global_objects/bigint') diff --git a/files/ko/web/javascript/reference/global_objects/bigint/index.html b/files/ko/web/javascript/reference/global_objects/bigint/index.html index 22ce105c2e..d562b2cdbc 100644 --- a/files/ko/web/javascript/reference/global_objects/bigint/index.html +++ b/files/ko/web/javascript/reference/global_objects/bigint/index.html @@ -9,7 +9,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/BigInt ---
{{JSRef}}
-

BigInt는 {{jsxref("Number")}} 원시 값이 안정적으로 나타낼 수 있는 최대치인 253 - 1보다 큰 정수를 표현할 수 있는 내장 객체입니다.

+

BigInt는 {{jsxref("Number")}} 원시 값이 안정적으로 나타낼 수 있는 최대치인 2^53 - 1보다 큰 정수를 표현할 수 있는 내장 객체입니다.

설명

@@ -179,9 +179,9 @@ Boolean(12n)
{{jsxref("BigInt.asIntN()")}}
-
주어진 BigInt-2width-12width-1 - 1의 범위로 자릅니다.
+
주어진 BigInt-2^(width - 1)2^(width - 1) - 1의 범위로 자릅니다.
{{jsxref("BigInt.asUintN()")}}
-
주어진 BigInt02width - 1의 범위로 자릅니다.
+
주어진 BigInt02^width - 1의 범위로 자릅니다.

인스턴스 메서드

@@ -199,7 +199,7 @@ Boolean(12n)

변환

-

BigInt를 {{jsxref("Number")}}로 변환하는 과정에서 정확도를 유실할 수 있으므로, 253보다 큰 값을 예상할 수 있는 경우 BigInt만 사용하는 것이 좋습니다.

+

BigInt를 {{jsxref("Number")}}로 변환하는 과정에서 정확도를 유실할 수 있으므로, 2^53보다 큰 값을 예상할 수 있는 경우 BigInt만 사용하는 것이 좋습니다.

암호화

-- cgit v1.2.3-54-g00ecf