Languages
[Edit]
DE

JavaScript - Math.E Verwendungsbeispiel und Eigenschaftendokumentation

3 points
Created by:
Nikki
10520

Die Math.E Eigenschaft gibt die mathematische Konstante (2.718281828459045...) zurück.

e wird als Eulers Zahl oder als Napier-Konstante bezeichnet. Es wurde jedoch von Jacob Bernoulli entdeckt. Es ist eine mathematische Konstante, die als Basis für den natürlichen Logarithmus verwendet wird.

// ONLINE-RUNNER:browser;

console.log( Math.E ); // 2.718281828459045

console.log( Math.exp(1) ); // 2.718281828459045
console.log( Math.exp(2) ); // 7.38905609893065
console.log( Math.exp(3) ); // 20.085536923187668

1. Dokumentation

SyntaxMath.E
Ergebnise Zahl (2.718281828459045...).
Beschreibung

E ist eine statistische Eigenschaft, bei der e - Zahl eine der am häufigsten verwendeten mathematischen Konstanten bleibt.


2. Approximation der e Zahl - Beispiel

Zur Berechnung der e Zahl kann die folgende Funktion mit Unendlichkeitsreihen verwendet werden - um eine bessere Genauigkeit zu erzielen, sollte eine unendliche Anzahl von Iterationen mit großet Genauigkeit verwendet werden.

// ONLINE-RUNNER:browser;

function computeE(iterations) {
	var e = 0;
  
  	for (var i = 0; i < iterations; ++i) {
      	var divider = 1;
      
      	for (var j = 0; j < i; ++j) {
            divider *= (j + 1);
        }
      
      	e += (1 / divider);
    }
  
  	return e;
}

console.log( computeE(  1 ) ); // 1
console.log( computeE(  2 ) ); // 2
console.log( computeE(  5 ) ); // 2.708333333333333
console.log( computeE( 10 ) ); // 2.7182815255731922
console.log( computeE( 20 ) ); // 2.7182818284590455
console.log( computeE( 50 ) ); // 2.7182818284590455

Literaturverzeichnis

  1. Eulersche Zahl - Wikipedia

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - Objekt Math (DE)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join