Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Number.EPSILON

Number.EPSILON 代表了不同的两个 Number之间的最小的差

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

Number.EPSILON 属性的属性特性:
writable false
enumerable false
configurable false

描述

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

示例

测试是否相等

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

说明

Specification Status Comment
ECMAScript 2015 (6th Edition, ECMA-262)
Number.EPSILON
Standard 最初定义
ECMAScript 2017 Draft (ECMA-262)
Number.EPSILON
Draft  

浏览器支持

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) 25.0 (25.0) 未实现 (Yes) 未实现
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support 未实现 未实现 25.0 (25.0) 未实现 未实现 未实现

参阅

文档标签和贡献者

 此页面的贡献者: jokeviner
 最后编辑者: jokeviner,