<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Math</h1>
<h2>The Math.LN10 Property</h2>
<p>Math.LN10 returns the natural logarithm of 10:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.LN10;
</script>
</body>
</html>