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.
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 | |
---|---|
Writable | no |
Enumerable | no |
Configurable | no |
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
BCD tables only load in the browser