This is an experimental technology, part of the ECMAScript 6 (Harmony) proposal.
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future version of browsers as the spec changes.
Resum
La propietat Number.EPSILON
representa la diferència entre el nombre 1 i el valor més petit major que 1 que pot ser representat com un Number
.
Per tal d'accedir a la propietat no es fa necessari crear un objecte Number
ja que és una propietat estàtica i n'hi ha prou amb fer servir Number.EPSILON
per a obtindre el valor.
Property attributes of Number.EPSILON |
|
---|---|
Writable | no |
Enumerable | no |
Configurable | no |
Descripció
La propietat EPSILON
té un valor aproximat de 2.2204460492503130808472633361816E-16
, és a dir, 2-52
.
Exemples
Exemple: Comprovant l'igualtat
x = 0.2; y = 0.3; equal = (Math.abs(x - y) < Number.EPSILON);
Especificacions
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 6 (ECMA-262) The definition of 'Number.EPSILON' in that specification. |
Release Candidate | Definició inicial |
Compatibilitat amb navegadors
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | (Yes) | 25.0 (25.0) | Not supported | (Yes) | Not supported |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | Not supported | Not supported | 25.0 (25.0) | Not supported | Not supported | Not supported |
Vegeu també
- L'objecte
Number
al qual pertany.