合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
[Infinity](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Infinity "全局属性 Infinity 是一个数值,表示无穷大。"):`Infinity`是*全局对象*(*global object*)的一个属性,即它是一个全局变量 当定义的一个数特别大时,打印显示出来的就是它 ``` const maxNumber = Math.pow(10, 1000); // max positive number console.log(maxNumber); if (maxNumber === Infinity) { console.log('Let\'s call it Infinity!');//结果:Let's call it Infinity! } console.log(1 / maxNumber);//结果:0 ```