JavaScript Basics
JavaScript Objects
JavaScript Advanced
JS Useful References
JS Useful Resources
Selected Reading
© 2013 TutorialsPoint.COM
|
Javascript Math - LOG10E Property
Advertisements
Description:
This returns base 10 logarithm of E which is approximately 0.434.
Syntax:
Example:
<html>
<head>
<title>JavaScript Math LOG10E Property</title>
</head>
<body>
<script type="text/javascript">
var property_value = Math.LOG10E
document.write("Property Value is : " + property_value);
</script>
</body>
</html>
|
This will produce following result:
Property Value is : 0.4342944819032518
|
To understand it in better way you can Try it yourself.
Advertisements
|
|
|