Infinity
Infinity 전역 속성은 무한대를 나타내는 숫자 값입니다.
시도해보기
값
Number.POSITIVE_INFINITY와 동일한 숫자 값입니다.
Property attributes of Infinity |
|
|---|---|
| Writable | 불가능 |
| Enumerable | 불가능 |
| Configurable | 불가능 |
설명
Infinity는 전역 객체의 속성입니다. 즉, 전역 범위의 변수입니다.
Infinity(양의 무한대)는 다른 어떤 수보다 더 큽니다. 수학적인 무한대와는 일부 차이점이 있습니다. Number.POSITIVE_INFINITY 문서에서 더 알아보세요.
예제
Infinity 사용하기
js
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 */
명세
| Specification |
|---|
| ECMAScript Language Specification # sec-value-properties-of-the-global-object-infinity |
브라우저 호환성
BCD tables only load in the browser