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

Infinity 전역 속성은 무한대를 나타내는 숫자값입니다.

+ +

{{js_property_attributes(0,0,0)}}

+ +
{{EmbedInteractiveExample("pages/js/globalprops-infinity.html")}}
+ + + +

설명

+ +

Infinity는 전역 객체의 속성입니다. 즉, 전역 스코프의 변수입니다.

+ +

Infinity의 초기값은 {{jsxref("Number.POSITIVE_INFINITY")}}입니다. Infinity(양의 무한대)는 다른 어떤 수보다 더 큽니다.

+ +

수학적인 무한대와는 일부 차이점이 있습니다. {{jsxref("Number.POSITIVE_INFINITY")}} 문서에서 더 알아보세요.

+ +

Infinity는 ECMAScript 5 명세에 따라 읽기 전용입니다.

+ +

예제

+ +
console.log(Infinity);          /* Infinity */
+console.log(Infinity + 1);      /* Infinity */
+console.log(Math.pow(10,1000)); /* Infinity */
+console.log(Math.log(0));       /* -Infinity */
+console.log(1 / Infinity);      /* 0 */
+console.log(1 / 0);             /* Infinity */
+
+ +

명세

+ + + + + + + + + + +
명세
{{SpecName('ESDraft', '#sec-value-properties-of-the-global-object-infinity', 'Infinity')}}
+ +

브라우저 호환성

+ + + +

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

+ +

같이 보기

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