A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Infinity below:

Infinity - JavaScript | MDN

Infinity

Baseline Widely available

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

시도해 보기
const maxNumber = Math.pow(10, 1000); // Max positive number

if (maxNumber === Infinity) {
  console.log("Let's call it Infinity!");
  // Expected output: "Let's call it Infinity!"
}

console.log(1 / maxNumber);
// Expected output: 0
값

Number.POSITIVE_INFINITY와 동일한 숫자 값입니다.

쓰기 가능 불가능 열거 가능 불가능 설정 가능 불가능 설명

Infinity는 전역 객체의 속성입니다. 즉, 전역 범위의 변수입니다.

Infinity(양의 무한대)는 다른 어떤 수보다 더 큽니다. 수학적인 무한대와는 일부 차이점이 있습니다. Number.POSITIVE_INFINITY 문서에서 더 알아보세요.

예제 Infinity 사용하기
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 */
명세 브라우저 호환성 같이 보기

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4