Copyright © tutorialspoint.com
This returns natural logarithm of 2 which is approximately 0.693.
Math.LN2 |
<html>
<head>
<title>JavaScript Math LN2 Property</title>
</head>
<body>
<script type="text/javascript">
var property_value = Math.LN2
document.write("Property Value is : " + property_value);
</script>
</body>
</html>
|
This will produce following result:
Property Value is : 0.6931471805599453 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com