This JavaScript tutorial explains how to use the math property known as Math.E with syntax and examples.
Description
In JavaScript, Math.E is a math property that is used to return the mathematical steady e which is the base of herbal logarithms. Because Math.E is a property of the Math object, it ought to be invoked thru the placeholder object called Math.
Syntax
In JavaScript, the syntax for the Math.E property is:
Math.E;
Parameters or Arguments
There are no parameters or arguments for the Math.E property.
Returns
The Math.E property returns the mathematical consistent e which has an approximate price of 2.71828.
Note
The Math.E property is a property of the Math object and now not a math function. However, we have protected the Math.E property inside our JS Math Functions area due to the fact you will most in all likelihood use this property in conjunction with the Math features determined in this section.
Example
Let’s take a look at an example of how to use the Math.E property in JavaScript.
For example:
console.log(Math.E);
In this example, we have invoked the Math.E property the use of the Math class.
We have written the output of the Math.E property to the web browser console log, for demonstration purposes, to exhibit what the Math.E property returns.
The following will be output to the web browser console log:
2.718281828459045
In this example, the Math.E property returned a fee of 2.718281828459045 which is the price of the mathematical regular e. This is the value of the base of herbal logarithms.
Leave a Review