How to get Euler's constant value in JavaScript?


To get Euler’s constant value in JavaScript, use the Math E property. This is a Euler's constant and the base of natural logarithms, approximately 2.718.

Example

You can try to run the following code to get Euler’s constant value in JavaScript −

Live Demo

<html>
   <head>
      <title>JavaScript Math E Property</title>
   </head>
   <body>
      <script>
         var property_value = Math.E
         document.write("Property Value is :" + property_value);
      </script>
   </body>
</html>

Output

Property Value is :2.718281828459045

Updated on: 18-Jun-2020

575 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements