JavaScript Number.POSITIVE_INFINITY (Infinity)

Number.POSITIVE_INFINITY 跟 Infinity 是一樣的,表示無限大的正數。

Number.POSITIVE_INFINITY === Infinity // true

用法例如:

if (Number.MAX_VALUE * 2 === Number.POSITIVE_INFINITY) {
    // Infinity
}