Infinity

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

グローバルプロパティ Infinity は無限大を表す数値です。

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

解説

Infinityグローバルオブジェクトのプロパティです。言い換えればグローバルスコープ内の変数です。

Infinity の初期値は Number.POSITIVE_INFINITY です。Infinity という値 (正の無限大) は他のあらゆる数より大きい数です。

この値は数学的に無限大のように振る舞います。詳しくは Number.POSITIVE_INFINITY を参照してください。

ECMAScript 5 の仕様では、Infinity は読み取り専用です (JavaScript 1.8.5 / Firefox 4 にて実装)。

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® 2025 Language Specification
# sec-value-properties-of-the-global-object-infinity

ブラウザーの互換性

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
Infinity

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

関連情報