JS Number.EPSILON
🌙
手机阅读
本文目录结构
Number.EPSILON
属性表示 1 与Number
可表示的大于 1 的最小的浮点数之间的差值。
你不必创建一个 Number
对象来访问这个静态属性(直接使用 Number.EPSILON
)。
Number.EPSILON 属性的属性特性: |
---|
writable |
enumerable |
configurable |
描述
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);
}
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262)Number.EPSILON | Standard | 最初定义 |
ECMAScript Latest Draft (ECMA-262)Number.EPSILON | Draft |