JavaScript Math expm1() Method Last Updated : 12 Jul, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report Math.expm1() is an inbuilt method in JavaScript that is used to get the value of ep-1, where p is any given number. The number e is a mathematical constant having an approximate value equal to 2.718. It was discovered by the Swiss mathematician Jacob Bernoulli. This number is also called Euler's number. Syntax:Math.expm1(p) Parameter:p: This parameter holds the number where we will perform the expm1 method.Example:Input :Math.expm1(0) Output : 0 Explanation: Here the value of parameter p is 0, So after putting the value 0 instead of p in ep-1 then its value becomes 0. Let's see the JavaScript program:Example 1: In this example, we will use Math expm1() Method javascript // Here different values is being taken as // as parameter of Math.expm1() method. console.log(Math.expm1(0)); console.log(Math.expm1(1)); console.log(Math.expm1(2)); console.log(Math.expm1(-1)); console.log(Math.expm1(5)); console.log(Math.expm1(2.2)); console.log(Math.expm1(-3.2)); Output0 1.718281828459045 6.38905609893065 -0.6321205588285577 147.4131591025766 8.025013499434122 -0.9592377960216338Example 2: Error, here parameter should be a number otherwise it gives an error or NaN i.e., not a number. javascript // Here alphabet parameter give error. console.log(Math.expm1(C)); Output:Error: C is not defined Example 3: Here parameter as a string give NaN. javascript // Here parameter as a string give NaN. console.log(Math.expm1("geeksforgeeks")); Output:NaN Application: Whenever we need to find the value of ep-1, where p is any given number that time we take the help of the Math.expm1() method in JavaScript.Example: In this example, we will see the application of Math expm1() Method javascript // Here different numbers are being taken as parameter // from 0 to 9 for Math.expm1() method. for (i = 0; i < 10; i++) { console.log(Math.expm1(i)); } Output0 1.718281828459045 6.38905609893065 19.085536923187668 53.598150033144236 147.4131591025766 402.4287934927351 1095.6331584284585 2979.9579870417283 8102.083927575384We have a complete list of Javascript Math methods, to check those please go through this JavaScript Math Object Complete Reference article.Supported Browsers: The browsers supported by JavaScript Math.expm1() method are listed below:Google Chrome 38 and aboveFirefox 25 and aboveOpera 25 and aboveSafari 8 and above Comment More infoAdvertise with us K Kanchan_Ray Follow Improve Article Tags : Misc JavaScript Web Technologies javascript-math JavaScript-Methods +1 More Practice Tags : Misc Similar Reads JavaScript Math E Property The Math.E is a property in JavaScript that simply returns the value of Euler's Number, which is nothing but just has a base of the natural logarithm. Its value is approximately around of 2.71828.Syntax:Math.E;Math.E â 2.718Return Values:It simply returns the value of the base of the natural logarit 2 min read JavaScript Math LN2 Property The Math.LN2 is a property in JavaScript that is simply used to find the value of a natural log of 2. The natural log is of base e which is represented as ln. So, the natural log of 2 is represented as ln(2) whose value is approximately 0.693.Syntax:Math.LN2; Parameters: This method does not accept 2 min read JavaScript Math LN10 Property The Math.LN10 is a property in JavaScript that is simply used to find the value of a natural log of 10. The natural log is of base e which is represented as ln. So, the natural log of 10 is represented as ln(10) whose value is approximately 2.302Syntax:Math.LN10; Return Values: It simply returns the 2 min read JavaScript Math LOG2E Property The Javascript Math.LOG2E is a property in JavaScript that is simply used to find the value of base 2 logarithms of e, where e is an irrational and transcendental number approximately equal to 1.442.Syntax:Math.LOG2E;Return Values: It simply returns the value of the base 2 logarithms of e.Example: H 3 min read JavaScript Math LOG10E Property The Javascript Math.LOG10E is a property in JavaScript that is simply used to find the value of base 10 logarithms of e, where e is an irrational and transcendental number approximately equal to 0.434Syntax: Math.LOG10E; Return Values: It simply returns the value of the base 10 logarithms of e.Examp 3 min read JavaScript Math PI Property The Math.PI is a property in JavaScript that is simply used to find the value of Pi i.e, in symbolic form Î which is nothing but it is the ratio of the circumference of a circle to its diameter, whose value is approximately 3.141. It is mainly used in mathematics problems.Syntax:Math.PIReturn values 3 min read JavaScript Math SQRT1_2 Property The Javascript Math.SQRT1_2 is a property in JavaScript that is simply used to find the value of the square root of 1/2, whose value is approximately 0.707106. That is, â (1/2) = 0.707106Syntax: Math.SQRT1_2;Return Values: It simply returns the value of the square root of 1/2, whose value is approxi 2 min read JavaScript Math SQRT2 Property The Math.SQRT2 is a property in JavaScript which is simply used to find the value of the square root of 2, whose value is approximately 1.4142. That is, â 2 = 1.4142 Syntax: Math.SQRT2; Return Value: It simply returns the value of the square root of 2, whose value is approximately 1.4142. Below is a 2 min read JavaScript Math abs() Method Javascript Math.abs() method is used to return the absolute value of a number. It takes a number as its parameter and returns its absolute value. Syntax:Math.abs(value)Parameters:This method accepts a single parameter as mentioned above and described below:value: The number whose absolute value is t 2 min read JavaScript Math acos() Method The Javascript Math.acos( ) method is used to return the arccosine of a number in radians. The Math.acos() method returns a numeric value between 0 and pi radians. The Math acos() is a static method of Math, therefore, it is always used as Math.acos(), rather than as a method of a Math object create 2 min read Like