Number.EPSILON

Number.EPSILON

Number.EPSILON 属性表示 1 和大于 1 的最小值(可表示为 Number)的差值。

你不必创建一个Number对象来访问这个静态属性(直接使用 Number.EPSILON)。

| Number.EPSILON属性的属性特性 |

|:----|

| Writable | no |

| Enumerable | no |

| Configurable | no |

描述

EPSILON 属性的值接近于 2.2204460492503130808472633361816E-16,或者 2-52。

示例

测试是否相等

x = 0.2; y = 0.3; z = 0.1; equal = (Math.abs(x - y + z) < Number.EPSILON

Polyfill

if (Number.EPSILON === undefined){ Number.EPSILON = Math.pow(2, -52

规范

SpecificationStatusComment
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Number.EPSILON' in that specification.StandardInitial definition.
ECMAScript Latest Draft (ECMA-262)The definition of 'Number.EPSILON' in that specification.Living Standard

浏览器兼容性

FeatureChromeEdgeFirefoxInternet ExplorerOperaSafari
Basic Support(Yes)(Yes)25No(Yes)9

FeatureAndroidChrome for AndroidEdge mobileFirefox for AndroidIE mobileOpera AndroidiOS Safari
Basic Support(Yes)(Yes)(Yes)25No(Yes)9