Copyright © tutorialspoint.com
This is a Euler's constant and the base of natural logarithms, approximately 2.718.
Math.E |
<html> <head> <title>JavaScript Math E Property</title> </head> <body> <script type="text/javascript"> var property_value = Math.E document.write("Property Value is : " + property_value); </script> </body> </html> |
This will produce following result:
Property Value is : 2.718281828459045 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com