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.

Math.E

Resum

La propietat Math.E representa la base dels algoritmes naturals, e, el seu valor aproximat és de 2.718.

Math.E=e2.718\mathtt{\mi{Math.E}} = e \approx 2.718

Property attributes of Math.E
Writable no
Enumerable no
Configurable no

Descripció

Com que E és una propietat estàtica de Math, sempre s'utilitza com Math.E en comptes de com una propietat d'un objecte Math creat (Math no és un constructor).

Exemples

Exemple: Utilitzar Math.E

La funció que trobareu a continuació retorna e:

function getNapier() {
  return Math.E;
}

getNapier(); // 2.718281828459045

Especificacions

Especificació Estat Comentaris
ECMAScript 1a Edició. Standard Definició inicial. Implementat en JavaScript 1.0.
ECMAScript 5.1 (ECMA-262)
The definition of 'Math.E' in that specification.
Standard  
ECMAScript 6 (ECMA-262)
The definition of 'Math.E' in that specification.
Release Candidate  

Compatibilitat amb navegadors

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari
Suport bàsic (Yes) (Yes) (Yes) (Yes) (Yes)
Característica Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Suport bàsic (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

Vegeu també

Document Tags and Contributors

 Contributors to this page: teoli, enTropy
 Last updated by: teoli,