Math.E

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

A propriedade Math.E representa a base dos logarítmos naturais, aproximadamente 2.718.

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

Experimente

function compoundOneYear(interestRate, currentVal) {
  return currentVal * Math.E ** interestRate;
}

console.log(Math.E);
// Expected output: 2.718281828459045

console.log((1 + 1 / 1000000) ** 1000000);
// Expected output: 2.718280469 (approximately)

console.log(compoundOneYear(0.05, 100));
// Expected output: 105.12710963760242
Property attributes of Math.E
Writableno
Enumerableno
Configurableno

Descrição

Como E é uma propriedade estática de Math, sempre use-a como Math.E, ao invés de uma propriedade de um objeto Math que você criou (Math não é um construtor).

Exemplos

Usando Math.E

A seguinte função retorna o valor de e:

js
function getNapier() {
  return Math.E;
}

getNapier(); // 2.718281828459045

Especificações

Specification
ECMAScript® 2025 Language Specification
# sec-math.e

Compatibilidade com navegadores

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
E

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

Veja também